Dictionary : Dictionary values : Dictionary PYTHON examples


PYTHON examples » Dictionary » Dictionary values »

 

Dictionary


Dictionary: values and itervalues

#The values method returns a list of the values in the dictionary (and itervalues 
#returns an iterator of the values). Unlike keys, the list returned by values may 
#contain duplicates:

d = {}
d[11
d[22
d[33
d[41
print d.values()
           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


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


PYTHON examples

 Navioo Dictionary
» Dictionary values