1#creating a list
2create_list = ["apple", "banana", "cherry"]
3print(create_list)
1list1 = ['physics', 'chemistry', 1997, 2000];
2list2 = [1, 2, 3, 4, 5 ];
3list3 = ["a", "b", "c", "d"];
1seller = ['apple', 'banana', 'avocado'] # the list
2new_item = 'kiwi' # new item in the store
3seller.append(new_item) # now it's have been added to the list