gpt4 book ai didi

python - 无法删除 'Unmamed:' 行

转载 作者:行者123 更新时间:2023-12-01 07:07:32 27 4
gpt4 key购买 nike

我正在阅读 Excel 工作表并得到如下图所示的结果,

enter image description here

df_result = pd.read_excel(file_path, sheet_name='Person', index=False)

我尝试使用删除“未命名:”列

df_result.drop([0], axis=0, inplace=True)

但是,无法删除它。

编辑:

也尝试过这个,

df_result.drop([0], inplace=True)

但是,删除第三行。(仅限 '0')

最佳答案

您可以在标题之前跳过一些行,这里是 1 行(可以工作,因为默认情况下会排除空行):

df_result = pd.read_excel(file_path, sheet_name='Person', index=False, skiprows=1)

关于python - 无法删除 'Unmamed:' 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58374112/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com