On 1/27/2015 9:49 AM, Rob Gaddi wrote:
Or the somewhat less indenty

for x in seq:
     if not some_predicate: continue
     do_something_to(x)



... or shorter and equally less indenty


for x in seq:
    if some_predicate: do_something_to(x)

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to