python删除满足列条件的行
python删除满足列条件的行
1、读取.txt文件
2、删除第三列中数值大于1000的数所在的行
3、写入.txt文件
// 删除第三列中大于1000的数所在的行
import pandas as pd
df_news = pd.read_table(r'C:\Users\13142\Desktop\out.txt', header=None)
df_clear = df_news.drop(df_news[df_news.iloc[:,3]< 1000].index)
df_clear.to_cs
原创
2020-09-28 15:45:01 ·
4425 阅读 ·
0 评论