fork(1) download
  1. a = b"f"
  2. b = b"\x66"
  3. if a == b:
  4. print("Same")
  5. else:
  6. print("different")
Success #stdin #stdout 0.02s 9936KB
stdin
Standard input is empty
stdout
Same