Relative Content

Tag Archive for pythoniteration

How to remove items from a list while iterating?

This question’s answers are a community effort. Edit existing answers to improve this post. It is not currently accepting new answers or interactions. I’m iterating over a list of tuples in Python, and am attempting to remove them if they meet certain criteria. for tup in somelist: if determine(tup): code_to_remove_tup What should I use in […]