用python读取csv数据并打印
时间: 2023-06-19 07:02:59 浏览: 62
用python读取CSV数据
假设你的CSV文件名为example.csv,以下是读取并打印数据的Python代码:
```python
import csv
with open('example.csv', newline='') as csvfile:
reader = csv.reader(csvfile, delimiter=',')
for row in reader:
print(row)
```
这将打开example.csv文件,将其内容读取为一个CSV格式的列表,然后逐行打印每个记录。请注意,delimiter参数指定逗号为分隔符,newline参数避免了读取到空行的问题。
阅读全文