gpt4 book ai didi

python - 删除 Pandas 中的评论行

转载 作者:太空宇宙 更新时间:2023-11-04 02:10:03 25 4
gpt4 key购买 nike

我有一个数据框,底部可能有注释字符。由于其他一些原因,我无法通过注释字符来初始化数据框本身。这是我想要的示例:

df = pd.read_csv(file,header=None)
df
0 1
0 132605 1
1 132750 2
2 # total: 100000

有没有办法就地删除以注释字符开头的所有行——也就是说,无需重新加载数据框?

最佳答案

使用startswith

newdf=df[df.iloc[:,0].str.startswith('#').ne(True)]

关于python - 删除 Pandas 中的评论行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53889618/

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