[TWIL] 파이썬, 그래프

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개의 비교 가능

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

Share via
Copy link