print(row["hbin"], herb_ids,target_ids)python如何将打印出的该结果存储zaicsv文件中
时间: 2024-05-06 09:19:47 浏览: 68
cmd运行python文件时对结果进行保存的方法
5星 · 资源好评率100%
可以使用Python内置的CSV模块来实现将结果存储为CSV文件的功能。具体步骤如下:
1. 导入CSV模块:
```python
import csv
```
2. 创建一个CSV文件并打开:
```python
with open('result.csv', 'w', newline='') as file:
writer = csv.writer(file)
```
3. 将结果写入CSV文件中:
```python
writer.writerow(['hbin', 'herb_ids', 'target_ids'])
writer.writerow([row["hbin"], herb_ids, target_ids])
```
4. 关闭CSV文件:
```python
file.close()
```
完整代码如下:
```python
import csv
# 创建CSV文件并打开
with open('result.csv', 'w', newline='') as file:
writer = csv.writer(file)
# 写入表头
writer.writerow(['hbin', 'herb_ids', 'target_ids'])
# 写入数据
writer.writerow([row["hbin"], herb_ids, target_ids])
# 关闭CSV文件
file.close()
```
阅读全文