摘要: python 读取CSV文件 import csv # 打开CSV文件 with open('example.csv', 'r', newline='') as file: reader = csv.DictReader(file) # 遍历CSV文件的每一行(作为字典) for row in re 阅读全文
posted @ 2024-07-27 23:19 西北逍遥 阅读(10) 评论(0) 推荐(0) 编辑