摘要:
读取CSV 读取CSV文件由两种方式: 第一种 import csvwith open('data.csv','r',encoding = 'utf8') as fp: reader = csv.reader(fp) for row in reader: print(row) 第二种 import 阅读全文
posted @ 2021-02-11 13:49 小翁好 阅读(6669) 评论(0) 推荐(0)
|
摘要:
读取CSV 读取CSV文件由两种方式: 第一种 import csvwith open('data.csv','r',encoding = 'utf8') as fp: reader = csv.reader(fp) for row in reader: print(row) 第二种 import 阅读全文
posted @ 2021-02-11 13:49 小翁好 阅读(6669) 评论(0) 推荐(0) |
||