fork download
  1. a=[1,2,3,4,5,6,7,8,9,0]
  2. a.append(11)
  3. a.insert(0,8)
  4. a.pop()
  5. a.pop()
  6. a.pop(5)
  7. print(type(a))
  8. print(a)
Success #stdin #stdout 0.01s 7216KB
stdin
Standard input is empty
stdout
<type 'list'>
[8, 1, 2, 3, 4, 6, 7, 8, 9]