如何从list1创建一个新列表 - 在python中列出2

时间:2016-10-27 07:31:36

标签: python python-2.7 python-3.x

我有list1 = [com.x1,com.x2 com.x3],我还有一个列表list2 = [com.x3]。

我需要另外一个列表,如list3 = [com.x1,com.x2],如list1-list2。

请帮助我。

1 个答案:

答案 0 :(得分:3)

列表理解将会:

[x for x in list1 if x not in list2]