python中items()和iteritems()的区别

Posted 虞曦非虞兮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中items()和iteritems()的区别相关的知识,希望对你有一定的参考价值。

items()函数,将一个字典以dict_items的形式返回,因为字典是无序的,所以返回的列表也是无序的:

1 a ={a:1,b:2,c:3,d:4}
2 print(a.items())
3 》dict_items([(a, 1), (b, 2), (c, 3), (d, 4)])
4 a.items()
5 》Out[13]: dict_items([(a, 1), (b, 2), (c, 3), (d, 4)

iteritems()函数是借用迭代器将容器中的内容迭代取出或者是删除等等

在python 2.x中存在该函数,在3.x中该函数已废除。

以上是关于python中items()和iteritems()的区别的主要内容,如果未能解决你的问题,请参考以下文章

python中items()和iteritems()的区别

Python2 中的 dict.items() 和 dict.iteritems() 有啥区别?

dict.items()和dict.iteritems()有什么区别?

items() iteritems()

Python 自动化运维1-字典

AttributeError: 'dict' object has no attribute 'iteritems'