python中items()和iteritems()函数的用法

Posted

tags:

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

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

a = {a:1,b:3}
a.items()
返回a = [(a,1),(b,3)]

iteritems()返回一个迭代器

b = a.iteritems()
list(b) =[(a,1),(b,3)]



for k,v in b:     
    print k,v

返回a 1
      b 3

 

以上是关于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'