Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Modify the function variables frominner function in python

Say I have this python code

def f():
    x=2
    def y():
        x+=3
    y()

this raises:

UnboundLocalError: local variable 'x' referenced before assignment

So, how do I "modify" local variable 'x' from the inner function? Defining x as a global in the inner function also raised an error.

share|improve this question

marked as duplicate by BrenBarn, Donal Fellows, Robert Rouhani, Maerlyn, AVD Dec 25 '12 at 9:16

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 8 down vote accepted

you can use nonlocal in python 3.x:

In [11]: def f():
        x=2
        def y():
                nonlocal x
                x+=3 ; print(x)
        y();print(x)
   ....:         

In [12]: f()
5
5

In python 2.x you need to declare the variable as an attribute of the outer function to achieve the same.

In [240]: def f():
   .....:     f.x=2
   .....:     def y():
   .....:         f.x+=2
   .....:         print f.x
   .....:     y()    
   .....:     print f.x
   .....:     

In [241]: f()
4
4

or using a dictionary:

In [264]: def f():
   .....:     dic={}
   .....:     dic['x']=2
   .....:     def y():
   .....:         dic['x']+=2
   .....:         print dic['x']
   .....:     y()    
   .....:     print dic['x']
   .....:     

In [265]: f()
4
4
share|improve this answer
+1, but note that this only applies to setting a value, and hence if you have a mutable value in the outer scope, it's possible to mutate it from the inner scope. – Lattyware Dec 24 '12 at 21:04
Thanks a lot :) – Loai Ghoraba Dec 24 '12 at 21:22
@Lattyware That's why we can use a dict or list as well, but that looks unpythonic though. – Ashwini Chaudhary Dec 24 '12 at 21:26
@AshwiniChaudhary Indeed, the other options are better unless the data structure is needed anyway. – Lattyware Dec 24 '12 at 21:27
@LoaiGhoraba glad that helped. – Ashwini Chaudhary Dec 24 '12 at 21:27

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