python编写代码比较两个文本文件内容是否相同
时间: 2023-07-23 22:35:51 浏览: 190
python 对比俩个txt文件内容
可以使用下面的代码来比较两个文本文件内容是否相同:
```
import filecmp
def compare_file(file1, file2):
return filecmp.cmp(file1, file2)
file1 = 'path/to/file1.txt'
file2 = 'path/to/file2.txt'
if compare_file(file1, file2):
print('The contents of the two files are the same.')
else:
print('The contents of the two files are different.')
```
其中,`file1`和`file2`是需要比较的两个文件路径。如果文件内容相同,输出`The contents of the two files are the same.`,否则输出`The contents of the two files are different.`。
阅读全文