python 写入列csv
时间: 2023-07-07 18:40:21 浏览: 163
Python写入CSV文件的方法
要将数据写入 CSV 文件的某一列,可以使用 Python 的 CSV 模块和 Pandas 库。
使用 CSV 模块:
``` python
import csv
# 打开 CSV 文件
with open('file.csv', mode='w', newline='') as file:
writer = csv.writer(file)
# 写入数据
writer.writerow(['Column1', 'Column2', 'Column3'])
writer.writerow(['Value1', 'Value2', 'Value3'])
```
使用 Pandas 库:
``` python
import pandas as pd
# 创建数据
data = {'Column1': ['Value1'], 'Column2': ['Value2'], 'Column3': ['Value3']}
# 创建 DataFrame
df = pd.DataFrame(data)
# 将 DataFrame 写入 CSV 文件
df.to_csv('file.csv', mode='w', index=False)
```
以上两种方法都可以写入 CSV 文件的某一列数据,具体方法根据需求选择即可。
阅读全文