fork download
  1. x, y, z = 1, 1, '1'
  2. print(x == y)
  3. print(x == z)
Success #stdin #stdout 0.09s 10840KB
stdin
Standard input is empty
stdout
True
False