fork download
  1. a = (1,2,[3,4])
  2. x = a[2]
  3. x += [4, 5]
  4. print(a)
  5.  
Success #stdin #stdout 0.02s 9048KB
stdin
Standard input is empty
stdout
(1, 2, [3, 4, 4, 5])