>>> 3 not in [2,3,4] False >>> 3 not in [4,5,6] True
但是如果我有两个列表并且必须检查列表A中的元素是否出现在列表B中呢?
A=[1,2,4] B=[4,6,7]
如何得到一个结果显示1,3不在列表B中?
真实的答案
any([True for x in [1,4] if x in [4,7]])
第二个列表中不存在的元素列表
[x for x in [1,4] if x not in [4,7]]