您可能想知道文件名是否以这些字符串结尾,而不是文件 istelf:
if file_name.endswith((".html", "_files")):
# whatever
要测试文件是否以这些字符串之一结尾,您可以执行以下操作:
with open(file_name) as f:
f.seek(-6, 2) # only read the last 6 characters of the file
if f.read().endswith((".html", "_files")):
# whatever