1
有沒有辦法這樣的一組文件擴展名類型,而不是所有的冗餘OR條件?或條件Python
for file in os.listdir(source_directory):
if file.endswith(".xlsx") or file.endswith(".xls") or file.endswith(".xlsm") or file.endswith(".xlsb"):
因此,像
if file.endswith(".xlsx","xls","xlsm","xlsb"):
你接近:'file.endswith(( 「XLS」, 「XLSM」, 「XLSB」), 「XLSX」):' – vaultah