Class Name: Python Programming and Mongo DB - Online Course
Class Session: Dictionaries
Total Questions: 3 | Duration: 5 Mins
1) Which of the following statements create a dictionary?
2) dict1 = {1:'1',2:'2',3:'3'} dict {} print (len(dict1))
3) What will be printed for the following: superdict={} superdict['Fruit'] = 'Apple' print superdict.items()[0][0]