如果我在一个函数中导入一个模块,变量会是局部的吗?
问题描述
如果我在一个函数(局部作用域)内导入了Python3中的一个模块,那么导入的内容会是该函数的本地对象吗?
喜欢
def test():
import math
s = math.cos(1)
s = math.cos(1)
解决方案
是,模块将是函数的本地模块,至少在上面的示例中是这样(我使用的是Python3.6)。
示例:
Python 3.6.0 (v3.6.0:41df79263a11, Dec 22 2016, 17:23:13)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
def test():
... import math
... s = math.cos(1)
...
g = math.cos(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'math' is not defined
相关文章