Answer to Question #3396 in Python for mukunda
Write a python program to add five of your class room member’s names with their roll numbers.
1
2011-08-04T12:33:25-0400
db = { 12324:"John Smith", 12346:"William Bakenstuff", 12423:"Sam Zoom" , 12443:"Zord Bumberg", 12487:"Kurt Lavett"}
for k in db.keys():
print(k, db[k])
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment