In Python remove() will remove the first occurrence of value in a list.
remove()
How to remove all occurrences of a value from a list?
This is w
a = [1, 2, 2, 3, 1] to_remove = 1 a = [i for i in a if i != to_remove] print(a)
Perhaps not the most pythonic but still the easiest for me haha