【说站】python读取csv的不同形式
2024-10-10
35
python读取csv的不同形式
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电脑。
更新于:1个月前赞一波!
相关文章
- 【说站】python自由变量是什么
- 【说站】Python如何用下标取得列表的单个值
- 【说站】Python切片获取列表多个值
- 【说站】python变量如何在作用域使用
- 【说站】Python如何在列表中添加新值
- 【说站】Python中JSON数据如何读取
- 【说站】Python装饰器的应用场景
- 【说站】Python threading模块的常用方法
- 【说站】Python map接收参数的探究
- 【说站】Python如何自定义类继承threading.Thread
- 【说站】python中random模块求随机数
- 【说站】python中figure()函数画两张图
- 【说站】python中subplot函数怎么画图?
- 【说站】python异常时的语句处理
- 【说站】python列表如何传递到线程?
- 【说站】python局部作用域是什么
- 【说站】python中Queue如何通信
- 【说站】python WSGI规范是什么
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
文章评论
评论问答