str.endswith() takes a tuple : if filename.endswith((“.csv”, “.xls”, “.xlsx”))
import operator
list1 = [1, 2, 3, 4]
list2 = [1, 2, 7, 4]
matches = list(map(operator.is_not, list1, list2))
assert matches == [False, False, True, False]
Operator 를 통해서 list 2개의 비교 가능
답글 남기기