On Thu, Jun 2, 2016 at 2:09 PM, Rob Gaddi
<rgaddi@highlandtechnology.invalid> wrote:
> The limited variable scoping is the only thing missing, and you can get
> around that by telling yourself you're not going to use that variable
> again, and then believing you on the matter.

Or you can actually limit the variable scope using a function:

def the_loop():
    for loopvar in range(initial_value, limit+1):
        processing
        if found_what_im_looking_for:
            return it
    do_whatever_it_is_you_do_when_its_not_found

thing_i_was_looking_for = the_loop()
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to