OrderedDict解压缩的值太多了

时间:2016-07-19 17:21:34

标签: python ordereddictionary

我的节目正在制作:

  

ValueError:要解压缩的值太多。

我复制了在其他实例中有效的代码行。

new_dict = (("data", 0))
new_dict = collections.OrderedDict(new_dict) #the line producing the error

这个和其他似乎有效的区别在于它们有更多的价值。

1 个答案:

答案 0 :(得分:5)

new_dict = (("data", 0))

这应该是包含键值对的元组。要创建仅包含一个元素的元组,请添加一个尾随逗号。

new_dict = (("data", 0),)