List Append

list1 = ['a','b']
list1
['a', 'b']
list1.append('c')
list1
['a', 'b', 'c', 'c']