摘要: import csvdef compare_csv(file1, file2): # 读取第一个CSV文件 with open(file1, 'r') as f1: csv1 = csv.reader(f1) data1 = [row for row in csv1] # 读取第二个CSV文件 wi 阅读全文
posted @ 2024-03-15 16:46 安琪儿一直在 阅读(137) 评论(0) 推荐(0) 编辑