473,287 Members | 1,447 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,287 software developers and data experts.

Can local function access local variables in main program?

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.

Nov 3 '07 #1
8 3858
On Sat, 03 Nov 2007 07:18:17 +0000, Sullivan WxPyQtKinter wrote:
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(UnboundLocalError)
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.

--
Steven
Nov 3 '07 #2
On Sat, 03 Nov 2007 07:18:17 +0000, Sullivan WxPyQtKinter wrote:
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::
>>def foo():
... global x
... print x
... x = 0
...
>>x = 12345
print x
12345
>>foo()
12345
>>print x
0

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

HTH,
Stargaming
Nov 3 '07 #3
Sullivan WxPyQtKinter wrote:
UnboundLocalError: local variable 'x' referenced before assignment
For your reference:

http://groups.google.de/groups?q=gro...oundLocalError

Regards,
Björn

--
BOFH excuse #12:

dry joints on cable plug

Nov 3 '07 #4
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?

On Nov 3, 3:39 am, Stargaming <stargam...@gmail.comwrote:
On Sat, 03 Nov 2007 07:18:17 +0000, Sullivan WxPyQtKinter wrote:
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.
Nov 3 '07 #5
Stargaming wrote:
You can make this work using the `global` statement::
>>def foo():
... global x
... print x
... x = 0
Is there any way to disable global for x? Something like that:
>>x = 12345
def foo():
.... global x
.... print x
.... noglobal(x) # ???
.... x = 0 # now this is local x
>>foo()
12345
>>print x
12345

--
In pariete - manus et crus cerebrumque

Nov 3 '07 #6
On Nov 3, 2007, at 5:32 PM, Pawel wrote:
Stargaming wrote:
>You can make this work using the `global` statement::
>>>>def foo():
... global x
... print x
... x = 0

Is there any way to disable global for x? Something like that:
>>>x = 12345
def foo():
... global x
... print x
... noglobal(x) # ???
... x = 0 # now this is local x
>>>foo()
12345
>>>print 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®
er**@myemma.com
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
Nov 3 '07 #7
Pawel wrote:
Is there any way to disable global for x? Something like that:
>>>x = 12345
def foo():
... 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

--
BOFH excuse #423:

It's not RFC-822 compliant.

Nov 4 '07 #8
On 2007-11-03, Dennis Lee Bieber <wl*****@ix.netcom.comwrote:
On Sat, 03 Nov 2007 17:30:45 -0000, Sullivan WxPyQtKinter
<su***********@gmail.comdeclaimed the following in comp.lang.python:
>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:
Well it would be explicit and explicit is better than implicit.
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")
--
Antoon Pardon
Nov 8 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: John Doe | last post by:
Hi all, I know the standard doesn't care about threads (wrongly :-) But in current compilers implementation, is the "list" which holds count of the occupied and free heap addresses SHARED among...
12
by: Olumide | last post by:
I'm studying Nigel Chapman's Late Night Guide to C++ which I think is an absolutely fantastic book; however on page 175 (topic: operator overlaoding), there the following code snippet: inline...
2
by: Paul M | last post by:
Hi, This is on an AS/400 which can be a little strange but I think the basic question is portable. I have a (non-C) program that needs to make series of calls to some C programs/functions....
15
by: MackS | last post by:
The system I am working on supports a subset of C99, among which "standard-compliant VLAs". I've already learnt that VLAs can't have global scope. My question is whether I can safely declare a...
23
by: Timothy Madden | last post by:
Hello all. I program C++ since a lot of time now and I still don't know this simple thing: what's the problem with local functions so they are not part of C++ ? There surely are many people...
7
bvdet
by: bvdet | last post by:
I provide shop drawings to structural steel fabricators with SDS/2 software (http://sds2.com) by Design Data (DD). I am not a programmer by education or trade and started writing scripts about 5...
1
by: coolindienc | last post by:
I converted this program from using global variables to local variables. When I did that my while loop stopped working in my main function(module). Anyone, any idea why? I underlined the area where...
1
by: coolindienc | last post by:
I converted this program from using global variables to local variables. When I did that my while loop stopped working in my main function(module). Anyone, any idea why? I underlined the area where...
55
by: Zytan | last post by:
I see that static is more restricted in C# than in C++. It appears usable only on classes and methods, and data members, but cannot be created within a method itself. Surely this is possible in...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: MeoLessi9 | last post by:
I have VirtualBox installed on Windows 11 and now I would like to install Kali on a virtual machine. However, on the official website, I see two options: "Installer images" and "Virtual machines"....
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.