Write a program to create a dictionary and store student id as key and student name as value and display the student id and name. After displaying the dictionary keys and values you should clear the dictionary so that your dictionary becomes empty.
1
Expert's answer
2011-08-04T12:29:36-0400
db = { 12324:"John Smith", 12346:"William Bakenstuff", 12423:"Sam Zoom" }
Comments
Leave a comment