Dictionary traversal memos in Python

  • 2020-04-02 14:32:17
  • OfStack

Note how the dictionary traverses in python, not too technical. Just for beginners' reference.


#!/usr/bin/env python
# coding=utf-8
demoDict = {'1':'Chrome', '2':'Android'} for key in demoDict.keys():
    print key for value in demoDict.values():
    print value for key in demoDict:
    print key, demoDict[key]
for key, value in demoDict.items():
    print key, value for key in demoDict.iterkeys():
    print key for value in demoDict.itervalues():
    print value for key, value in demoDict.iteritems():
    print key, value print 'dict.keys()=', demoDict.keys(), ';dict.iterkeys()=', demoDict.iterkeys()

The difference between interitems and iterms

Refer to http://stackoverflow.com/questions/10458437/python-what-is-the-difference-between-dict-items-and-dict-iteritems


Related articles: