python系列教程191——nonlocal边界
Posted 人工智能AI技术
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python系列教程191——nonlocal边界相关的知识,希望对你有一定的参考价值。
朋友们,如需转载请标明出处:https://blog.csdn.net/jiangjunshow
声明:在人工智能技术教学期间,不少学生向我提一些python相关的问题,所以为了让同学们掌握更多扩展知识更好地理解AI技术,我让助理负责分享这套python系列教程,希望能帮到大家!由于这套python教程不是由我所写,所以不如我的AI技术教学风趣幽默,学起来比较枯燥;但它的知识点还是讲到位的了,也值得阅读!想要学习AI技术的同学可以点击跳转到我的教学网站。PS:看不懂本篇文章的同学请先看前面的文章,循序渐进每天学一点就不会觉得难了!
和global语句不同,当执行一条nonlocal语句时,nonlocal名称必须已经在一个嵌套的def作用域中赋值过,否则将会得到一个错误:
>>>def tester(start):
... def nested(label):
... nonlocal state # Nonlocals must already exist in enclosing def!
... state = 0
... print(label,state)
... return nested
...
SyntaxError: no binding for nonlocal 'state' found
>>>def tester(start):
... def nested(label):
... global state # Globals don't have to exist yet when declared
... state = 0 # This creates the name in the module now
... print(label,state)
... return nested
...
>>>F = tester(0)
>>>F('abc')
abc 0
>>>state
0
其次,nonlocal限制作用域查找仅为嵌套的def,nonlocal不会在嵌套的模块的全局作用域或所有def之外的内置作用域中查找:
>>>spam = 99
>>>def tester():
... def nested():
... nonlocal spam # Must be in a def,not the module!
... print('Current=',spam)
... spam += 1
... return nested
...
SyntaxError: no binding for nonlocal 'spam' found
以上是关于python系列教程191——nonlocal边界的主要内容,如果未能解决你的问题,请参考以下文章