Pages

Showing posts with label comprehension. Show all posts
Showing posts with label comprehension. Show all posts

Friday, May 9, 2014

python: dictionary comprehension








dict = { 'a':1, 'b':2 }
dict = { k: str(dict[k]) for k in dict.keys() }
print(dict)