Labels

Friday, September 2, 2016

Python loop dictionary

d = {}

Python 2: for key, val in d.iteritems():

Python 3: for key, val in d.items():

No comments:

Post a Comment