fork download
  1. # Python Membership Operator
  2. a='i'
  3. b='find'
  4. print("in ",a in b)
  5. print("not in",a not in b)
Success #stdin #stdout 0.03s 9276KB
stdin
Standard input is empty
stdout
in  True
not in False