python读取csv的不同形式

729次阅读
没有评论

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)
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-04-27发表,共计326字。
新手QQ群:570568346,欢迎进群讨论 Python51学习