脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python中的字典遍历备忘

Python中的字典遍历备忘

2020-05-19 09:21脚本之家 Python

这篇文章主要介绍了Python中的字典遍历备忘,本文列举了多种字典遍历方法,适合初学者查看,并简单讲解了interitems和iterms区别,需要的朋友可以参考下

备忘一下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

延伸 · 阅读

精彩推荐