t379.py 133 B

123456
  1. things = ['hi', 'a', 'b', 'c']
  2. things.insert(len(things), 'bye')
  3. print things
  4. things.insert(len(things)+3, 'surpise')
  5. print things