We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
##Introduction
db = {'a':1,'b':2,'c':3} for k,v in db.items(): print k,v
This will print values print db.values()
This will print keys print db.keys()