fork download
  1. p=[3,1,2]
  2. q=p
  3. p[1]=0
  4. print(q)
Success #stdin #stdout 0.12s 14136KB
stdin
Standard input is empty
stdout
[3, 0, 2]