给我写一个python脚本,处理一个excel表格,把第二列里数据为0且第四列里数据为0的行删除
时间: 2024-02-15 21:02:55 浏览: 75
好的,以下是处理Excel表格的Python脚本,使用了pandas库:
```python
import pandas as pd
# 读取Excel表格数据
df = pd.read_excel('example.xlsx')
# 删除第二列数据为0且第四列数据为0的行
df = df[(df.iloc[:, 1] != 0) | (df.iloc[:, 3] != 0)]
# 保存处理后的Excel表格
df.to_excel('example_processed.xlsx', index=False)
```
你可以将脚本中的`example.xlsx`改为你自己的Excel表格文件名,然后运行脚本即可得到处理后的Excel表格文件`example_processed.xlsx`,其中第二列数据为0且第四列数据为0的行已被删除。
阅读全文