Python字典遍历 Python中的字典遍历备忘

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Python字典遍历 Python中的字典遍历备忘

  2021-03-19 我要评论
想了解Python中的字典遍历备忘的相关内容吗,在本文为您仔细讲解Python字典遍历的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们