成功解决TypeError: unsupported operand type(s) for +: 'dict_items' and 'list'
目录
解决问题
TypeError: unsupported operand type(s) for +: 'dict_items' and 'list'
解决思路
类型错误:+:'dict_items'和'list'不支持的操作数类型
有些人会使用这种方法:z = dict(x.items() + y.items())
这其实就是在内存中创建两个列表,再创建第三个列表,拷贝完成后,创建新的dict,删除掉前三个列表。这个方法耗费性能,而且对于python3,这个无法成功执行,因为items()返回是个对象。
解决方法
将
Z_dict = a.items() + [('b1', 'b2')]
改为
Z_dict = dict( list(a.items()) + [('b1', 'b2')] )
哈哈,大功告成!