Python Dictionary Example


Program
a = {1:"Hello",2:2,3:4.02,4:"fresherbell",5:True} print(type(a)) print (a) print (a[3])
Input
Output