fork(1) download
  1. print("b" in "abc")
  2. print("b" == "abc")
  3. print("abc" in "abc")
  4. print("abc" == "abc")
  5.  
  6. #https://pt.stackoverflow.com/q/291360/101
Success #stdin #stdout 0.02s 9212KB
stdin
Standard input is empty
stdout
True
False
True
True