python中读取csv数据的方式
时间: 2023-10-29 21:15:30 浏览: 78
用python读取CSV数据
Python中读取CSV数据有多种方式,最常见的是使用csv模块或pandas库。
使用csv模块:
```python
import csv
with open('file.csv', newline='') as csvfile:
reader = csv.reader(csvfile, delimiter=',', quotechar='|')
for row in reader:
print(', '.join(row))
```
使用pandas库:
```python
import pandas as pd
df = pd.read_csv('file.csv')
print(df)
```
以上是两种常见的方式,还有其他如numpy库等方式可以读取CSV数据。
阅读全文