dict.items() and dict.iteritems( 2016-07-21 本文已影响49人 NILSTARK dict.items(): Return a copy of the dictionary’s list of (key, value) pairs.返回列表 dict.iteritems(): Return an iterator over the dictionary’s (key, value).返回迭代器 python3中有所改变