remove 0 from list python code example
Example 1: remove all occurrences of a character in a list python
>>> x = [1,2,3,2,2,2,3,4]
>>> list(filter(lambda a: a != 2, x))
[1, 3, 3, 4]
Example 2: remove all of same value python list
x = [1, 2, 3, 2, 2, 2, 3, 4]
list(filter(lambda a: a != 2, x))
Example 3: python remove .0
number = 5.0
number = int(number)
# 5
# Safety net if number is not equal to int
def safe_int(number: float):
if number - int(number) == 0:
return int(number)