remove from a list in place python code example
Example 1: remove element from list
>>> a = [0, 2, 3, 2]
>>> a.remove(2)
>>> a
[0, 3, 2]
Example 2: how to remove a element from list in python and print it
pop(n) removes the element at the given index number and can print it