Create subset of keys : Keys : Dictionary PYTHON TUTORIALS


PYTHON TUTORIALS » Dictionary » Keys »

 

Create subset of keys


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


months = year.keys()
months.sort()
halfCount = len(months)/2
half = months[0:halfCount]

print half



Leave a Comment / Note


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


PYTHON TUTORIALS

 Navioo Dictionary
» Keys