"Filip Gruszczynski" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>> If you want to just declare that name exist, but doesn't want to
>> declare the type, why don't you just do this:
>>
>> def somefunc():
>> nonlocal = nonlocal
>> local = 0 # or None or [] or an initial
"jmDesktop" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> So what is n and x in the first iteration? Sorry. I'm trying.
Remember how Python's range operator works. range(n, x) constructs a list
that consists of all elements starting with n and up to, but /not
including/, x.