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]
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]
how to remove all zeros from a list in python
X = [0,5,0,0,3,1,15,0,12]
X = [i for i in X if i != 0]
python trim zero off end of list
list1 = [48, 39, 23, 15, 11, 12, 5, 9, 7, 3, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0]
def pop_zeros(items):
while items[-1] == 0:
items.pop()
pop_zeros(list1)
pop_zeros(list2)
print(list1)
# Output:
[48, 39, 23, 15, 11, 12, 5, 9, 7, 3, 0, 0, 1, 0, 1]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us