리스트의 연산(덧셈, 뺄셈)

케나·2022년 3월 11일
0
post-custom-banner

✅ 리스트의 덧셈

a = [1, 2, 3, 4, 5]
b = [6, 7, 8, 9, 10]
print(a+b) # [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

✅ 리스트의 뺄셈

➰ for - not in 사용

a = [1, 2, 3, 4, 5]
b = [3, 4, 5, 6, 7]
temp = [i for i in a if i not in b] # a-b
print(temp) # [1, 2]

➰ Counter 사용

from collections import Counter
list(Counter(participant) - Counter(completion))
#
import collections
list(collections.Counter(participant)-collections.Counter(completion))

0개의 댓글