I'm trying to add or subtract from a defined variable, but I can't figure out how to overwrite the old value with the new one.
a = 15
def test():
a = a +10
print ( a )
test()
Error message:
Traceback (most recent call last):
File "test.py", line 7, in <module>
test()
File "test.py", line 4, in test
a = a +10
UnboundLocalError: local variable 'a' referenced before assignment
The error that you get when you try to run your code is:
… which, on the face of it, seems strange: after all, the first statement in the code above (
a = 15
) is an assignment. So, what's going on?Actually, there are two distinct things happening, and neither of them are obvious unless you already know about them.
First of all, you actually have two different variables:
The
a
in your first line is a global variable (so called because it exists in the global scope, outside of any function definitions).The
a
in the other lines is a local variable, meaning that it only exists inside yourtest()
function.These two variables are completely unrelated to each other, even though they have the same name.
A variable is local to a function if there's a statement assigning to it inside that function - for instance, your
a = a +10
line.Even so, the error still looks strange - after all, the very first thing you do inside
test()
is assign toa
, so how can it be referenced beforehand?The answer is that, in an assignment statement, Python evaluates everything on the right hand side of the
=
sign before assigning it to the name on the left hand side – so even though the assignment is written first in your code,a
gets referenced first in that right hand side:a +10
.There are two ways you can get around this. The first is to tell Python that you really want the
a
insidetest()
to be the samea
in the global scope:This will work, but it's a pretty bad way to write programs. Altering global variables inside functions gets hard to manage really quickly, because you usually have lots of functions, and none of them can ever be sure that another one isn't messing with the global variable in some way they aren't expecting.
A better way is to pass variables as arguments to functions, like this:
Notice that the name doesn't have to be the same - your new definition of
test()
just says that it accepts a value, and then does something with it. You can pass in anything you like – it could bea
, or the number7
, or something else. In fact, your code will always be easier to understand if you try to avoid having variables with the same name in different scopes.If you play with the code above, you'll notice something interesting:
…
a
didn't change! That's because although you passed it intotest()
and it got assigned tox
, it was thenx
that got changed, leaving the originala
alone.If you want to actually change
a
, you need to return your modifiedx
from the function, and then reassign it back toa
on the outside:Your error has nothing to do with is being already defined… A variable is only valid inside it's so called scope: If you create a variable in a function it is only defined in this function.
You're modifying a variable
a
created in the scope of the functiontest()
. If you want the outtera
to be modified you could do:I would do it this way:
Note that in the version hereby proposed there are some things differing from yours.
First, what I wrote down would create a function that has, as an input, the value a (in this case set to 15 when we call the function -already defined in the last line-), then assigns to the object a the value a (which was 15) plus 10, then returns a (which has been modified and now is 25) and, finally, prints a out thanks to the last line of code:
Note that what you did wasn't actually a pure function, so to speak. Usually we want functions to get an input value (or several) and return an input value (or several). In your case you had an input value that was actually empty and no output value (as you didn't use return). Besides, you tried to write this input a outside the function (which, when you called it by saying
test(a)
the value a was not loaded an gave you the error -i.e. in the eyes of the computer it was "empty").Furthermore, I would encourage you to get used to writing return within the function and then using a print when you call it (just like I wrote in the last coding line:
print(test(15))
) instead of using it inside the function. It is better to use print only when you call the function and want to see what the function is actually doing.At least, this is the way they showed me in basic programming lessons. This can be justified as follows: if you are using the return within the function, the function will give you a value that can be later used in other functions (i.e. the function returns something you can work with). Otherwise, you would only get a number displayed on screen with a print, but the computer could not further work with it.
P.S. You could do the same doing this:
Scope of the variable is local to the block unless defined explicitly using keyword
global
. There is other way to access the global variable local to a function usingglobals
functionAbove example will print
25
while keeping the global value intact i.e15
.