python字典中items和iteritems的區(qū)別?
items()返回的是列表對象,而iteritems()返回的是iterator對象。例如:
print dic.items() #[('a', 'hello'), ('c', 'you'), ('b', 'how')]
print dic.iteritems() #
深究:iteritor是迭代器的意思,一次反悔一個數(shù)據(jù)項,知道沒有為止
for i in dic.iteritems():
print i
結(jié)果:('a', 'hello')
('c', 'you')
('b', 'how')