how to remove all same values from the list in python code example
Example: remove all of same value python list
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))