如何在if问题中创建此python命令:
import filecmp
filecmp.cmp('old_index.html', 'new_index.html')
这些命令的答案是True还是False。 因此,当文件相同或不相同时,我可以执行某些操作。
感谢您的帮助
答案 0 :(得分:3)
您可以在if
语句中使用它,就像这样
if filecmp.cmp('old_index.html', 'new_index.html'):
# Do whatever you want if the files are the same
print("Both the files are same")
else:
# Do whatever you want if the files are NOT the same
print("No, the files are NOT the same")
答案 1 :(得分:-1)
if filecmp.cmp('old.html','new.html')==False:
#do something like-
print 'files are not equal'
#same code for True value