Python filecmp.cmp('old_index.html', 'new_index.html') 在 if 事件中
Python filecmp.cmp('old_index.html', 'new_index.html') in if event
如何在 if 问题中执行此 python 命令:
import filecmp
filecmp.cmp('old_index.html', 'new_index.html')
这些命令的答案是真还是假。
这样我就可以在文件相同或不同时执行某些操作。
感谢您的帮助
您可以在 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")
if filecmp.cmp('old.html','new.html')==False:
#do something like-
print 'files are not equal'
#same code for True value
如何在 if 问题中执行此 python 命令:
import filecmp
filecmp.cmp('old_index.html', 'new_index.html')
这些命令的答案是真还是假。 这样我就可以在文件相同或不同时执行某些操作。
感谢您的帮助
您可以在 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")
if filecmp.cmp('old.html','new.html')==False:
#do something like-
print 'files are not equal'
#same code for True value