fork download
  1. L=[2,3,4]
  2. def s(L):
  3. return not 5 in L
  4.  
  5. print(s(L))
Success #stdin #stdout 0.03s 9668KB
stdin
Standard input is empty
stdout
True