fork download
  1. x = 3
  2. y = x
  3. print(id(x), id(y))
  4. y = 4
  5. >>> print(id(x), id(y))
Runtime error #stdin #stdout 0.02s 5760KB
stdin
Standard input is empty
stdout
Standard output is empty