I have the following:
thisdict = {"Romance": romance, "Horror": horror,
"Action": action, "Crime": crime,
"Si-fi": scifi, "Drama": drama, "Comedy": comedy}
print(thisdict)
for key, value in thisdict.items():
print(key, ":", value)
and I want the output to have all the colons in alignment:
Horror : 5
Comedy : 4
Action : 2
How would I go about doing this?