我想获得多索引数据帧。 在工作中,我得到了错误" TypeError:' list'对象不可调用"
这是我的情况
Plz回答我的帮助
谢谢
答案 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