1myList = [apples, grapes]
2fruit = input()#this takes user input on what they want to add to the list
3myList.append(fruit)
4#myList is now [apples, grapes, and whatever the user put for their input]
1list_of_names=["Bill", "John", "Susan", "Bob", "Emma","Katherine"]
2new_name="James"
3list_of_names.append(new_name)
4# The list is now ["Bill", "John", "Susan", "Bob", "Emma","Katherine", "James"]