Answer:
food_list = ['rice', 'beans','yam', 'bread', 'pasta', 'cocoa','tea']
one_more = ['meat']
extend_list = food_list + one_more
print(extend_list)
Output : ['rice', 'beans','yam', 'bread', 'pasta', 'cocoa','tea', 'meat']
food_list.append('milk')
print(food_list)
Output : ['rice', 'beans','yam', 'bread', 'pasta', 'cocoa','tea', 'milk']
food_list.insert(0, 'cake')
print(food_list)
Output : ['cake', 'rice', 'beans','yam', 'bread', 'pasta', 'cocoa','tea']
flowers = ['rose', 'hibiscus', 'lily']
flowers.remove('rose')
print(flowers)
Output : ['hibiscus', 'lily']
To remove rose using pop()
flowers.pop(0)
Explanation:
The + operator and append method adds elements to the end of an existing list item.
The insert method adds element at the specified index
Remove method deletes element by stating the name of the element to be deleted while pop deletes element using the index value of the element.