Using List Operators
li = ['a', 'b', 'mpilgrim'] li = li + ['example', 'new'] print li li += ['two'] print li