Python中非本地语句的语法错误

Jas*_*ack 12 python syntax-error python-nonlocal

我想测试在这个问题的答案中使用的非本地语句的示例:

def outer():
   x = 1
   def inner():
       nonlocal x
       x = 2
       print("inner:", x)
   inner()
   print("outer:", x)
Run Code Online (Sandbox Code Playgroud)

但是当我尝试加载此代码时,我总是会收到语法错误:

Traceback (most recent call last):


File "<stdin>", line 1, in <module>
  File "t.py", line 4
    nonlocal x
             ^
SyntaxError: invalid syntax
Run Code Online (Sandbox Code Playgroud)

有没有人知道我在这里做错了什么(我得到的每个例子的语法错误,包含nonlocal).

Mar*_*ers 20

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)
... 
Run Code Online (Sandbox Code Playgroud)