List Append 09 Aug 2020 list1 = ['a','b'] list1 ['a', 'b'] list1.append('c') list1 ['a', 'b', 'c', 'c']