Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,165 questions

40,721 answers

573 users

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 100 views
1 answer 80 views
1 answer 30 views
1 answer 84 views
...