Python int dans la liste
myList = [1,2,3,4,5]
if 3 in myList:
print("3 is present")
Comfortable Cottonmouth
myList = [1,2,3,4,5]
if 3 in myList:
print("3 is present")