Nobody writes:
> On Thu, 21 Mar 2013 01:52:17 -0700, bartolome.sintes wrote:
>
> > In Python 3, "free variable" and "nonlocal variable" are synonym
> > terms?
>
> "Free variable" is a computer science term. A variable is free if it
> is not bound. E.g. x and y are free in "x+y", x is bound and y
On Thu, 21 Mar 2013 01:52:17 -0700, bartolome.sintes wrote:
> In Python 3, "free variable" and "nonlocal variable" are synonym terms?
"Free variable" is a computer science term. A variable is free if it is
not bound. E.g. x and y are free in "x+y", x is bound and y is free in
"lambda x: x+y", x a
On 3/21/2013 4:52 AM, bartolome.sin...@gmail.com wrote:
In Python 3, "free variable" and "nonlocal variable" are synonym terms?
Yes, but that is idiosyncratic to Python.
Or is there a difference, like "a free variable is a variable that is
not a local variable, then nonlocal variables and glo
On Thu, 21 Mar 2013 01:52:17 -0700, bartolome.sintes wrote:
> In Python 3, "free variable" and "nonlocal variable" are synonym terms?
> Or is there a difference, like "a free variable is a variable that is
> not a local variable, then nonlocal variables and global variables are
> both free variabl
bartolom...@gmail.com於 2013年3月21日星期四UTC+8下午4時52分17秒寫道:
> In Python 3, "free variable" and "nonlocal variable" are synonym terms? Or is
> there a difference, like "a free variable is a variable that is not a local
> variable, then nonlocal variables and global variables are both free
> variables"