python删除csv文件第一列代码
时间: 2023-05-31 13:08:10 浏览: 146
python3删除csv文件某一行数据
5星 · 资源好评率100%
您可以使用Python的csv模块和pandas库来删除CSV文件的第一列。以下是一些示例代码:
使用csv模块:
```python
import csv
with open('file.csv', 'r') as input_file:
reader = csv.reader(input_file)
with open('new_file.csv', 'w', newline='') as output_file:
writer = csv.writer(output_file)
for row in reader:
writer.writerow(row[1:])
```
使用pandas库:
```python
import pandas as pd
df = pd.read_csv("file.csv")
df = df.iloc[:,1:]
df.to_csv("new_file.csv", index=False)
```
阅读全文