a = [1,2,3] b = [1,2] [x for x in a if x not in b] # [3] list(set(a) - set(b)) # [3] list(set(a).difference(b)) # [3]
Python 리스트 합집합, 교집합, 차집합, 대칭차