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 236 views
1 answer 213 views
1 answer 164 views
1 answer 228 views
1 answer 211 views
...