지방이의 Data Science Lab

[Python] 두 리스트에서 다른 것 찾기 본문

Data Analysis/Python

[Python] 두 리스트에서 다른 것 찾기

[지현] 2020. 8. 1. 19:04


temp1 = ['One', 'Two', 'Three', 'Four']

temp2 = ['One', 'Two']

 

가 있을 때,

temp3 = ['Three', 'Four']를 얻어내자.

 


1
2
= set(temp2)
temp3 = [x for x in temp1 if x not in s]

 

 

 

 

Comments