python 如何进行CSV文件进行对比
import csv
def compare_csv(file1, file2):
# 读取第一个CSV文件
with open(file1, 'r') as f1:
csv1 = csv.reader(f1)
data1 = [row for row in csv1]
# 读取第二个CSV文件
with open(file2, 'r') as f2:
csv2 = csv.reader(f2)
data2 = [row for row in csv2]
# 比较两个CSV文件的内容
if data1 == data2:
print("两个CSV文件内容相同")
else:
print("两个CSV文件内容不同")
# 调用函数进行比较
compare_csv('3.csv', '4.csv')