UnboundLocalError: local variable 'colorIndex' referenced

S

silverburgh.meryl

Can you please tell me what is the meaning this error in general?

UnboundLocalError: local variable 'colorIndex' referenced before
assignment

In my python script,
I have a variable define and init to 0, like this
colorIndex = 0

and in one of my functions, I increment it by 1
def myFunc
colorIndex += 1
 
R

Rick Zantow

(e-mail address removed) wrote in @t39g2000cwt.googlegroups.com:
Can you please tell me what is the meaning this error in general?

UnboundLocalError: local variable 'colorIndex' referenced before
assignment

In my python script,
I have a variable define and init to 0, like this
colorIndex = 0

and in one of my functions, I increment it by 1
def myFunc
colorIndex += 1

It's a scoping issue. Within myFunc, if colorIndex receives a value
(that is, if you assign something to it, as you do here), Python
requires a local variable, one known within the scope of function. If
you had only *read* the variable (x = colorIndex, for instance), then
Python will first look for a local variable, and, finding none, will
then look for a global variable, which it would find in this case. The
net effect of all this is a common gotcha for new Python users: the
'colorIndex' that is assigned to within myFunc is *not* the same as the
one you assigned 0 to earlier; they just happen to share the same name.

You can get around this in various ways. One is to declare the variable
in myFunc, like this:
def myFunc
global colorIndex
colorIndex += 1
...
 
D

Diez B. Roggisch

Can you please tell me what is the meaning this error in general?

UnboundLocalError: local variable 'colorIndex' referenced before
assignment

In my python script,
I have a variable define and init to 0, like this
colorIndex = 0

and in one of my functions, I increment it by 1
def myFunc
colorIndex += 1

It is alwasy a better idea to post whole scripts/working examples (even if working actaully means non-working). And this
is an example why: Using your old code, things worked. But inside a function, colorIndex isn't in the scope. You could
e.g. use a global-statement like this:


colorIndex = 0

def foo():
global colorIndex
colorIndex += 1

foo()


But that is not a very bright idea usually, as globals are difficult to debug.

Diez
 

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
473,764
Messages
2,569,567
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top