ValueError:列的长度必须与 DataFrame.__setitem__(self, key, value) 中的键相同

问题描述 投票:0回答:1

enter image description here enter image description here

ValueError: Columns must be same length as key

请帮助我,谢谢..

此程序用于将标签信息 xml 文件转换为 Pandas Dataframe,df[cols] 出现错误。我应该在 DataFrame.setitem(self, key, value) 中替换什么? 我应该怎么处理 df[cols] 的值错误?

python-3.x pandas dataframe jupyter-notebook xml-parsing
1个回答
-1
投票

尝试:

cols = ['height', 'width'] # add here extra column names
for col in cols:
    df[col] = df[col].astype(int)
© www.soinside.com 2019 - 2024. All rights reserved.