things = ['hi', 'a', 'b', 'c']
things.insert(len(things), 'bye')
print things

things.insert(len(things)+3, 'surpise') 
print things
