您现在的位置是:课程教程文章
python读取csv的不同形式
2023-12-14 21:49课程教程文章 人已围观
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学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
课程教程:python读取csv的不同形式上一篇:python XML数据是什么
下一篇:没有了