CODE 1:

x=4    
def func():
          print("HELLO WORLD")
          y=x+2
          print (y)
          print (x) # gives o/p as HELLO WORLD 6,4,4.

func()    
print (x)

CODE 2:

x=4    
def func():

          print("HELLO WORLD")
          y=x+2
          x=x+2 # gives an error here
          print (y)
          print (x) 

func()
print (x)

In the first code, it is not showing any error, it's adding the x value to 2 and resulting back to y and it prints the o/p as 6,4,4. But Actually as I learnt so for, it should point an error because I am not giving the global declaration for x variable inside the func(). But its not ponting any error but in Code 2 it gives an error saying that x referenced before assignment.

The question is can x can be used for the assignment of its value to other variables? Even it is not followed with global declaration?

link|improve this question

3  
This is python, could you please stop using semicolons? – cularis Jul 11 '11 at 7:11
ofcourse cularis but it gives users more readability if you use semi colons so i used it – niko Jul 11 '11 at 7:12
1  
In what way is a semicolon increasing readability? It is useless in your code above. – cularis Jul 11 '11 at 7:14
ofcourse but for me and some people it increases the readability – niko Jul 11 '11 at 7:15
ok sorry from now i stop using semicolon – niko Jul 11 '11 at 7:15
show 5 more comments
feedback

2 Answers

up vote 3 down vote accepted

You can read global variables without explicitly declaring them as global (Code 1)

But you are not allowed to assign to a global variable without explicitely declaring it as global. (Code 2)

This is because there is no harm in reading, but when assigning you might get unexpected behaviour (especially if it's a long code with many variables and you think it's a unique name you are using, but it's not).

link|improve this answer
feedback

In the first function you haven't assigned to x, so the compiler doesn't treat it as a local variable. The runtime will automatically get x from the containing scope. You can easily inspect that x is not considered a local variable:

>>> func1.__code__.co_varnames
('y',)

In the 2nd function you're assigning to x, so the compiler treats it as a local variable:

>>> func2.__code__.co_varnames
('x', 'y')

Hence the error you see: UnboundLocalError: local variable 'x' referenced before assignment.

link|improve this answer
your right thats the error i see – niko Jul 11 '11 at 7:17
Also, the error comes from the previous line: y=x+2. There's nothing assigned to variable x. – eryksun Jul 11 '11 at 7:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.