Can local function access local variables in main program?

  • Thread starter Sullivan WxPyQtKinter
  • Start date
S

Sullivan WxPyQtKinter

I am confused by the following program:

def f():
print x
x=12345
f()

result is:12345

however:
def f():
print x
x=0

x=12345
f()

result is:
Traceback (most recent call last):
File "...\test.py", line 5, in ?
f()
File "...\test.py", line 2, in f
print x
UnboundLocalError: local variable 'x' referenced before assignment


I am using
Python 2.4.4 (#71, Oct 18 2006, 08:34:43) [MSC v.1310 32 bit (Intel)]
on win32
I also tested it on python 2.5, which gives the same result.
 
S

Steven D'Aprano

def f():
print x
x=0

x=12345
f()

result is:
Traceback (most recent call last):
File "...\test.py", line 5, in ?
f()
File "...\test.py", line 2, in f
print x
UnboundLocalError: local variable 'x' referenced before assignment


When Python compiles your function f(), it sees that you have assigned to
x, and that there is no line "global x", so it knows that x is a local
variable.

But when you call f(), you try to print x before the local x has a value
assigned to it. Hence the (accurate but hardly user-friendly) error
message.

You can also do this:

Help on class UnboundLocalError in module exceptions:

class UnboundLocalError(NameError)
| Local name referenced but not bound to a value.



As far as I know, there is no way to read the value of global x if and
only if local x doesn't exist.
 
S

Stargaming

I am confused by the following program:

def f():
print x
x=12345
f()

result is:
12345

If python can't discover x in your current scope and you do not bind to
it there, it will automatically access that global name x.
however:
def f():
print x
x=0

x=12345
f()

result is:
Traceback (most recent call last):
File "...\test.py", line 5, in ?
f()
File "...\test.py", line 2, in f
print x
UnboundLocalError: local variable 'x' referenced before assignment

Here, you *do* assign to x in this scope so this is essentially the same
as the following (without any function scope)::

print x
x = 12345

This can't work since you haven't used x when you try to print it.

You can make this work using the `global` statement::
... global x
... print x
... x = 0
... 0

See more in the `lexical reference about the global statement <http://
docs.python.org/ref/global.html>.

HTH,
Stargaming
 
S

Sullivan WxPyQtKinter

Actually I am quite satisfied with and error, which is my expectation.
But the implicit global variable access seems quite uncomfortable to
me. Why is that necessary?
 
D

Dennis Lee Bieber

Actually I am quite satisfied with and error, which is my expectation.
But the implicit global variable access seems quite uncomfortable to
me. Why is that necessary?

Would you want to have to write things like:

import os
import os.path
import sys

def dFunc(more):
return "The full path of the item is: %s" % more

def aFunc(something):
global os.path
global sys
global dFunc
sys.stdout.write(dFunc(os.path.join("nonsense", something)))

Your "variable" follows the same logic used for name look ups of all
items -- "read" access will, after exhausting the local scope, search
the module level names (note that you don't need "global" to modify a
mutable object in module level -- it is only the rebinding of the name
itself that needs "global")
--
Wulfraed Dennis Lee Bieber KD6MOG
(e-mail address removed) (e-mail address removed)
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: (e-mail address removed))
HTTP://www.bestiaria.com/
 
P

Pawel

Stargaming said:
You can make this work using the `global` statement::

... global x
... print x
... x = 0

Is there any way to disable global for x? Something like that:.... global x
.... print x
.... noglobal(x) # ???
.... x = 0 # now this is local x 12345
 
E

Erik Jones

Is there any way to disable global for x? Something like that:
... global x
... print x
... noglobal(x) # ???
... x = 0 # now this is local x
12345

Why would you need to do that? It would be confusing. Just use a
different variable name for the local.

Erik Jones

Software Developer | Emma®
(e-mail address removed)
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com
 
D

Dennis Lee Bieber

Is there any way to disable global for x? Something like that:
... global x
... print x
... noglobal(x) # ???
... x = 0 # now this is local x

def foo():
lx = x
print lx
lx = 0

And takes one less line even! (if you don'l like l, use local_, or
some other convention)
--
Wulfraed Dennis Lee Bieber KD6MOG
(e-mail address removed) (e-mail address removed)
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: (e-mail address removed))
HTTP://www.bestiaria.com/
 
B

Bjoern Schliessmann

Pawel said:
Is there any way to disable global for x? Something like that:
... global x
... print x
... noglobal(x) # ???
... x = 0 # now this is local x

Not really. Why don't you choose meaningful variable names? You
practically save nothing by using fewer names.

Regards,


Björn
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top