Get your own Python server Result Size: 625 x 565
x
 
mylist = [3, 7, 2, 9, 5, 1, 8, 4, 6]
if 4 in mylist:
  print("Found!")
else:
  print("Not found!")
Found!