fork download
  1. source = [1, 2, 3]
  2. copy = source
  3. copy[0] = 9
  4. print(source)
  5.  
Success #stdin #stdout 0s 28688KB
stdin
Standard input is empty
stdout
[9, 2, 3]