Dictionary methods. : Index : Dictionary PYTHON TUTORIALS


PYTHON TUTORIALS » Dictionary » Index »

 

Dictionary methods.


monthsDictionary = "January""February""March",
                     "April""May""June""July",
                     "August""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, "] =", monthsDictionarykey ]



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Dictionary
» Index