Python中的字典遍历备忘

2019/7/13 21:37:48

本文主要是介绍Python中的字典遍历备忘,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

备忘一下python中的字典如何遍历,没有什么太多技术含量.仅供作为初学者的我参考.

复制代码 代码如下:

#!/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()

interitems和iterms区别

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



这篇关于Python中的字典遍历备忘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程