您的当前位置:首页正文

python读取csv的不同形式

2024-08-01 来源:化拓教育网

1、以列表的形式读取csv数据

编写一个读取 csv 文件的程序:

import csv
 
csvfile = open('./data.csv', 'r')
reader = csv.reader(csvfile)
 
for row in reader:
    print(row)

import csv将导入Python自带的csv模块。

2、以字典的形式读取csv数据

import csv
 
csvfile = open('./data.csv', 'r')
reader = csv.DictReader(csvfile)
 
for row in reader:
    print(row)

以上就是python读取csv的两种形式,希望对大家有所帮助。更多Python学习指路:

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。