摘要: 读取CSV文件 # 读取CSV文件 import csv with open('csv1.csv', encoding='utf8') as f1: # 建立reader对象 csvfile = csv.reader(f1) # 将数据转换为列表 listf = list(csvfile) prin 阅读全文
posted @ 2020-09-24 15:21 ☞@_@ 阅读(211) 评论(0) 推荐(0) 编辑