.append() adds a new element to the end of the list.
List_1 = [1, 2, 3, 4]
List_1.append(5)
List_1 = [1, 2, 3, 4, 5]