How to check if one of the following items is in a list?

前端 未结 14 2042
终归单人心
终归单人心 2020-11-22 17:02

I\'m trying to find a short way to see if any of the following items is in a list, but my first attempt does not work. Besides writing a function to accomplish this, is the

14条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 17:54

    1 line without list comprehensions.

    >>> any(map(lambda each: each in [2,3,4], [1,2]))
    True
    >>> any(map(lambda each: each in [2,3,4], [1,5]))
    False
    >>> any(map(lambda each: each in [2,3,4], [2,4]))
    True
    

提交回复
热议问题