how to eliminate things from a list code example
Example 1: remove element from list python
# animals list
animals = ['cat', 'dog', 'rabbit', 'guinea pig']
# 'rabbit' is removed
animals.remove('rabbit')
# Updated animals List
print('Updated animals list: ', animals)
Example 2: python list remove all elements
l = [1,2,3,4]
l.clear()