fork download
  1. #uar/bin/python
  2. list=[1,2,3]
  3. list1=[4,5,6]
  4. list=list+list1
  5. print list
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4, 5, 6]