Python中非本地语句的语法错误
问题内容:
我想测试在此问题的答案中指定的使用非本地语句的示例:
def outer():
x = 1
def inner():
nonlocal x
x = 2
print("inner:", x)
inner()
print("outer:", x)
但是当我尝试加载此代码时,总是会出现语法错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "t.py", line 4
nonlocal x
^
SyntaxError: invalid syntax
有人知道我在这里做错了吗(我使用的每个示例都包含,因此出现语法错误nonlocal
)。
问题答案:
nonlocal
仅适用于Python
3;这是该语言的一种新增加。
在Python 2中,它将引发语法错误;python将其nonlocal
视为表达式而不是语句的一部分。
当您实际使用正确的Python版本时,此特定示例可以正常工作:
$ python3.3
Python 3.3.0 (default, Sep 29 2012, 08:16:08)
[GCC 4.2.1 Compatible Apple Clang 3.1 (tags/Apple/clang-318.0.58)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> def outer():
... x = 1
... def inner():
... nonlocal x
... x = 2
... print("inner:", x)
... inner()
... print("outer:", x)
...