1.Python3字典中items()和python2.x中iteritems()的区别 在Python2.x中,items( )用于 返回一个字典的拷贝列表【Returns a copy of the list of all items (key/value pairs)inD】,占额外的内存。 iteritems() 用于返回本身字典列表操作后的迭代【Returns an i