内容简介:谈谈Python for循环的作用域
对于从其他语言转到 Python 的人来说,下面这段代码显得很诡异:
for i in range(3): print(i) print(i)
你期望的是 i
变量不存在报错,而实际上打印结果是:
这是因为,在Pyhton中,是没有block这个概念的。
Python中的作用域只有四种,即LEGB规则:
L, local – 在lambda函数内或者def函数内部的变量
E, Enclosing-function – 闭包的作用域(了解Python的闭包可以看《闭包初探》)
G,Global – 全局作用域
B, Build-in – 内建作用域
举个例子:
In [3]: def func(): ...: a = 1 # Local ...: def inner(): ...: print(a) # 和外部函数的a构成了闭包 ...: foo = 'hello' # 这里foo是local局部变量 ...: for foo in ["hello", "python"]: # for循环并没有作用域,foo也是局部变量,会覆盖上面的foo ...: print(foo) ...: print(foo) # 局部变量foo依然存在,打印"python" ...: global s # s变成全局变量 ...: s = 12 ...: inner() ...: In [4]: func() 1 hello python python In [5]: s Out[5]: 12
由此看来,for循环的作用域会污染局部作用域,Python2的列表生成式也会有这个副作用,但是已经在Python3中得到了修复。
Python 3.6.3 (default, Nov 3 2017, 14:41:25) Type 'copyright', 'credits' or 'license' for more information IPython 6.2.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: i = 'foo' In [2]: [i for i in range(10)] Out[2]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] In [3]: i Out[3]: 'foo' In [4]: for i in range(10): ...: print(i) ...: 0 1 2 3 4 5 6 7 8 9 In [5]: i Out[5]: 9 Python 2.7.14 (default, Sep 25 2017, 09:54:19) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> i = 'foo' >>> [i for i in range(10)] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> i 9 >>> i = 'foo' >>> for i in range(10): ... print(i) ... 0 1 2 3 4 5 6 7 8 9 >>> i 9
曾经 Python邮件列表中有人想 “如果在for-loop中有函数引用变量,就将此变量变成for-loop局部变量”,但是造成这个的问题并不是for循环的问题,而是闭包的迟绑定。
以上所述就是小编给大家介绍的《谈谈Python for循环的作用域》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 008.Python循环for循环
- 006.Python循环语句while循环
- 007.Python循环语句while循环嵌套
- 观点 | 激励循环——加密算法如何实际修复现有激励循环
- 数组常见的遍历循环方法、数组的循环遍历的效率对比
- ????谈谈单元测试
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Computational Geometry
Mark de Berg、Otfried Cheong、Marc van Kreveld、Mark Overmars / Springer / 2008-4-16 / USD 49.95
This well-accepted introduction to computational geometry is a textbook for high-level undergraduate and low-level graduate courses. The focus is on algorithms and hence the book is well suited for st......一起来看看 《Computational Geometry》 这本书的介绍吧!