fork download
  1. aList=[123,'xzc','asdf','wer']
  2. aList.insert(3,2009)
  3. print(aList)
Success #stdin #stdout 0.13s 14100KB
stdin
Standard input is empty
stdout
[123, 'xzc', 'asdf', 2009, 'wer']