美文网首页
python3.x里的字典items()与python2.x里的

python3.x里的字典items()与python2.x里的

作者: 深思海数_willschang | 来源:发表于2016-09-16 16:28 被阅读103次

python3.x

python3.x 里 用 items()替换iteritems() ,可以用于 for 来循环遍历。

iteritems()在python3.x中已经废除

** 下图为错误样例 **

item_error.png

正确样例

items_demo.png

python2.x

在Python2.x中,items( )用于 返回一个字典的拷贝列表,占额外的内存。
iteritems() 用于返回本身字典列表操作后的迭代,不占用额外的内存。

相关文章

网友评论

      本文标题:python3.x里的字典items()与python2.x里的

      本文链接:https://www.haomeiwen.com/subject/hwliettx.html