l = [1, 3, 4, 7]
if 3 in l:
    print("présence")
if 5 not in l:
    print("absence")
