python csv 从第四行开始,删去当前csv文件的数据
时间: 2024-08-15 17:09:14 浏览: 93
python读取当前目录下的CSV文件数据
5星 · 资源好评率100%
在Python中,如果你想从CSV文件的第四行开始删除所有数据,可以先读取整个文件内容,然后跳过前几行再写回文件。下面是一个使用`csv.reader`和`csv.writer`的例子:
```python
import csv
# 读取CSV文件
with open('input.csv', 'r') as file:
reader = csv.reader(file)
lines = list(reader)
# 删除前三行(从第四行开始)
lines = lines[3:]
# 重新写入CSV文件
with open('output.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(lines)
阅读全文