摘要: python操作csv: 读取表头的2中方式 #方式一import csvwith open("D:\\test.csv") as f: reader = csv.reader(f) rows=[row for row in reader] print(rows[0]) #方式二import csv 阅读全文
posted @ 2021-11-12 17:07 sean1246 阅读(70) 评论(0) 推荐(0)