for k,v in dict.iteritems():
print k,v
是叠代器函數。可以在for循環內使用,單獨使用的方法:
iter = dict.iteritems()
iter.next()
來獲得鍵值對。