list_of_names=["Bill", "John", "Susan", "Bob", "Emma","Katherine"] new_name="James" list_of_names.append(new_name) # The list is now ["Bill", "John", "Susan", "Bob", "Emma","Katherine", "James"]