尽量不要用以下方式更新一个DataFrame: df.loc[idx] = Lst 如果要更新df, 我宁愿将新的列用list先存起来,然后用pd.concat()一次性更新,尽量不要用df.loc[idx] 这种方式,否则会非常慢。