fork download
  1. a=[1,4,5]
  2. a.append(2)
  3. print(a)
Success #stdin #stdout 0.09s 14108KB
stdin
Standard input is empty
stdout
[1, 4, 5, 2]