📅  最后修改于: 2023-12-03 15:07:56.108000             🧑  作者: Mango
CSV文件(Comma-Separated Values,逗号分隔值)是一种常见的数据存储格式,使用逗号将数据分隔成不同的字段。
在Python中,需要使用csv模块来读取CSV文件。
import csv
with open('example.csv', 'r') as file:
reader = csv.reader(file)
该代码使用了Python的with语句,确保在结束后自动关闭文件。
import csv
with open('example.csv', 'r') as file:
reader = csv.reader(file, delimiter=',')
上述代码中,我们使用逗号作为分隔符。如果CSV文件使用其他分隔符,比如制表符,需要将delimiter参数设置为'\t'。
import csv
with open('example.csv', 'r') as file:
reader = csv.reader(file, delimiter=',')
for row in reader:
print(row)
上述代码中,我们使用了一个for循环来迭代读取CSV文件的每一行,然后将其打印出来。
import csv
with open('example.csv', 'r') as file:
reader = csv.reader(file, delimiter=',')
for row in reader:
print(row)