我bar()
在另一个函数中嵌套了一个函数定义foo()
。现在我正在尝试foo()
从嵌套函数访问位于外部函数中的变量bar()
。但是,由于范围规则,这不起作用(请参阅下面的错误回溯)。
我正在寻找类似于global
关键字的东西,但是它只能让我访问全局变量,而这是某种半全局变量。
这是示例代码:
def foo():
i = 0
def bar():
# how can I get access to the variable from enclosing scope?
i += 1
bar()
foo()
输出是:
$ python test.py
Traceback (most recent call last):
File "test.py", line 7, in <module>
foo()
File "test.py", line 5, in foo
bar()
File "test.py", line 4, in bar
i += 1
UnboundLocalError: local variable 'i' referenced before assignment