Python check if Items are in list

前端 未结 4 878
慢半拍i
慢半拍i 2021-01-20 14:01

I am trying to iterate through two lists and check if items in list_1 are in list_2. If the item in list_1 is in list_2 I would like to print the item in list_2. If the ite

4条回答
  •  -上瘾入骨i
    2021-01-20 14:20

    Oneliner:

    [print(i) for i in ["Letter {}".format(i) if "Letter {}".format(i) in list_2 else i for i in list_1]]
    

    Outputs:

    Letter A
    B
    Letter C
    Letter D
    Y
    Letter Z
    

提交回复
热议问题