标签: python python-2.7 python-3.x
我有list1 = [com.x1,com.x2 com.x3],我还有一个列表list2 = [com.x3]。
我需要另外一个列表,如list3 = [com.x1,com.x2],如list1-list2。
请帮助我。
答案 0 :(得分:3)
列表理解将会:
[x for x in list1 if x not in list2]