items()返回的是列表对象,而iteritems()返回的是iterator对象。例如:
print dic.items() #[(‘a’, ‘hello’), (‘c’, ‘you’), (‘b’, ‘how’)]
print dic.iteritems() #
深究:iteritor是迭代器的意思,一次反悔一个数据项,知道没有为止
for i in dic.iteritems():
print i
结果:(‘a’, ‘hello’)
(‘c’, ‘you’)
(‘b’, ‘how’)
首页 >
items()返回的是列表对象,而iteritems()返回的是iterator对象。例如:
print dic.items() #[(‘a’, ‘hello’), (‘c’, ‘you’), (‘b’, ‘how’)]
print dic.iteritems() #
深究:iteritor是迭代器的意思,一次反悔一个数据项,知道没有为止
for i in dic.iteritems():
print i
结果:(‘a’, ‘hello’)
(‘c’, ‘you’)
(‘b’, ‘how’)
怎样对Python源码加密 - python - 前端,python多行语句 | 怎样对Python源码加密 - python - 前端,python多行语句 ...
python如何编译生成二进制文件 - python - 前端,python给数组添加元素 | python如何编译生成二进制文件 - python - 前端,python给数组添加元素 ...
plc和python有什么区别 - python - 前端,python成绩查询 | plc和python有什么区别 - python - 前端,python成绩查询 ...