摘要: 读取csv文件 代码 import csv with open('总分.csv', 'r', encoding='gbk', newline='') as f: # 读取文件所有信息 LIST = csv.reader(f) content2 = list(LIST) for i in LIST: 阅读全文
posted @ 2021-01-01 16:04 萌新_python 阅读(127) 评论(0) 推荐(0)