How to remove elements from a list based on a condition in Python

1 Answer

0 votes
a_list = [1, 2, 5, 4, 2, 3, 2, 6, 7, 2, 2]

for i in a_list[:]:
    if i == 2:
        a_list.remove(i)

print(a_list)


'''
run:

[1, 5, 4, 3, 6, 7]

'''

 



answered Oct 27, 2017 by avibootz

Related questions

1 answer 248 views
1 answer 225 views
1 answer 175 views
1 answer 234 views
1 answer 221 views
...