用python读取csv文件内容
时间: 2023-09-30 21:04:59 浏览: 89
python读取csv文件
5星 · 资源好评率100%
可以使用Python内置的csv模块来读取csv文件内容。
例如,假设我们有一个名为example.csv的csv文件,它包含以下内容:
```csv
Name, Age, Gender
John, 25, Male
Jane, 30, Female
Bob, 40, Male
```
下面是使用csv模块读取csv文件内容的示例代码:
```python
import csv
with open('example.csv') as csv_file:
csv_reader = csv.reader(csv_file, delimiter=',')
for row in csv_reader:
print(f'{row[0]} is {row[1]} years old and is {row[2]}')
```
输出结果:
```
Name is Age years old and is Gender
John is 25 years old and is Male
Jane is 30 years old and is Female
Bob is 40 years old and is Male
```
在上面的代码中,我们使用open函数打开csv文件,并将其传递给csv.reader函数。csv.reader函数接受两个参数:文件对象和分隔符。在这个例子中,我们使用逗号作为分隔符。
然后,我们使用for循环遍历csv_reader对象,并打印每行的内容。每行是一个列表,其中每个元素都是csv文件中的一个字段。在这个例子中,我们使用列表索引来访问每个字段。
阅读全文