Dictionary methods. : Index « Dictionary « Python Tutorial






monthsDictionary = { 1 : "January", 2 : "February", 3 : "March",
                     4 : "April", 5 : "May", 6 : "June", 7 : "July",
                     8 : "August", 9 : "September", 10 : "October",
                     11 : "November", 12 : "December" }

print "The dictionary items are:"
print monthsDictionary.items()

print "\nThe dictionary keys are:"
print monthsDictionary.keys()

print "\nThe dictionary values are:"
print monthsDictionary.values()

print "\nUsing a for loop to get dictionary items:"

for key in monthsDictionary.keys():
   print "monthsDictionary[", key, "] =", monthsDictionary[ key ]








8.12.Index
8.12.1.Indexing a Dictionary
8.12.2.Retrieve value from key
8.12.3.Modifying a Dictionary
8.12.4.How to Access Values in Dictionaries
8.12.5.To access individual dictionary elements, you use the familiar square brackets along with the key to obtain its value:
8.12.6.mixing the use of numbers and strings as keys
8.12.7.Dictionary methods.