- 转载请注明作者和出处:http://blog.csdn.net/u011475210
- 操作系统:WINDOWS 10
- 软件版本:python-3.6.2-amd64
- 编 者:WordZzzz
一、Python2.x中items():
和之前一样,本渣渣先贴出来python中help的帮助信息:
1 | help(dict.items) |
1 | help(dict.iteritems) |
1 | help(dict.viewitems) |
在Python2.x中,items( )用于 返回一个字典的拷贝列表【Returns a copy of the list of all items (key/value pairs) in D】,占额外的内存。
iteritems() 用于返回本身字典列表操作后的迭代【Returns an iterator on all items(key/value pairs) in D】,不占用额外的内存。
1 | 1:'one',2:'two',3:'three'} d={ |
二、Python3.x中items():
1 | help(dict.items) |
Python 3.x 里面,iteritems() 和 viewitems() 这两个方法都已经废除了,而 items() 得到的结果是和 2.x 里面 viewitems() 一致的。在3.x 里 用 items()替换iteritems() ,可以用于 for 来循环遍历。
1 | 1:'one',2:'two',3:'three'} d={ |
简单的例子:
1 | d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59, 'Paul': 74 } |
输出结果:1
2
3
4
5
6D:\Users\WordZzzz\Desktop>python3 test.py
Adam : 95
Lisa : 85
Bart : 59
Paul : 74
平均分为: 78.25
关于python3.x中items具体的应用,可以通过下面的传送门到达机器学习实战中找到:
系列教程持续发布中,欢迎订阅、关注、收藏、评论、点赞哦~~( ̄▽ ̄~)~
完的汪(∪。∪)。。。zzz