Printing nested dictionary
I have 2 dictionaries: movie_collections_dict = {‘Avatar’:0, ‘Titanic’:0, ‘StarWar’:0} #which indicates the revenues of the movies and {‘avatar’: {‘adult’: 0, ‘child’: 0, ‘concession’: 0, ‘senior’: 0, ‘student’: 0}, ‘starwar’: {‘adult’: 0, ‘child’: 0, ‘concession’: 0, ‘senior’: 0, ‘student’: 0}, ‘titanic’: {‘adult’: 0, ‘child’: 0, ‘concession’: 0, ‘senior’: 0, ‘student’: 0}} #which shows that this much… Read More Printing nested dictionary