Iterating through a list. Upon condition I want to move on to next item in list

breamoreboy at gmail.com breamoreboy at gmail.com
Wed May 10 18:35:51 EDT 2017


On Wednesday, May 10, 2017 at 8:25:25 PM UTC+1, aaron.m.... at gmail.com wrote:

You've all ready had some answers, but are you after something like this?

for elem in mylist:
    if someThing(elem) is True:
        continue.

Kindest regards.

Mark Lawrence.



More information about the Python-list mailing list