fork(1) download
  1. L = []
  2. L = [0,1,2,3,4]
  3. L1 = [5,6,7,8]
  4. print (L + L1)
Success #stdin #stdout 0.02s 9992KB
stdin
Standard input is empty
stdout
[0, 1, 2, 3, 4, 5, 6, 7, 8]