python中的此错误是什么意思?

时间:2018-07-19 03:20:55

标签: python loops indentation

list = []
for df in lp:
           list.append(list(df.loc[985191]))
        list(list of list)
T = pd.DataFrame(list)

您好,我有python的代码,但返回时显示错误

  

IndentationError:unindent与任何外部缩进级别都不匹配

可能是什么错误?

1 个答案:

答案 0 :(得分:0)

您将此行list.append(list(df.loc[985191]))缩进得太远了。试试看。

 list = []
    for df in lp:
            list.append(list(df.loc[985191]))
            list(list of list)
    T = pd.DataFrame(list)