1# the list.remove(object) method takes one argument
2# the object or element value you want to remove from the list
3# it removes the first coccurence from the list
4
5generic_list = [1, 2, 2, 2, 3, 3, 4, 5, 5, 5, 6, 8, 8, 8]
6
7generic_list.remove(1)
8
9# The Generic list will now be:
10# [2, 2, 2, 3, 3, 4, 5, 5, 5, 6, 8, 8, 8]
11
12