TypeError:' list'对象不可调用来进行多索引

时间:2018-05-18 18:55:33

标签: python list pandas dataframe zip

我想获得多索引数据帧。 在工作中,我得到了错误" TypeError:' list'对象不可调用"

这是我的情况

enter image description here

Plz回答我的帮助

谢谢

1 个答案:

答案 0 :(得分:0)

您可能以前在代码中使用了list作为变量。 这是一个示例代码

a = list()
a.append(2)
print(a)

list = 1
print(type(list))
#Here you would see that the type of list is integer
#To get back the type list,just delete the reference as below
del list
print(type(list))
#Now it will print that its of type list