Python 模块导入不工作
Python module import not working
我收到以下代码的错误:
from os import getcwd
os.getcwd()
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
os.getcwd()
NameError: name 'os' is not defined
有人知道为什么以这种方式导入不起作用吗?
有两种可能。第一种是每次调用函数时导入模块并命名模块:
import os
print os.getcwd()
或者直接导入模块的方法,调用时不用命名模块:
from os import getcwd
print getcwd()
from os import getcwd
print getcwd()
当你只导入了 getcwd
而没有导入 os
这怎么行 os.getcwd
我收到以下代码的错误:
from os import getcwd
os.getcwd()
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
os.getcwd()
NameError: name 'os' is not defined
有人知道为什么以这种方式导入不起作用吗?
有两种可能。第一种是每次调用函数时导入模块并命名模块:
import os
print os.getcwd()
或者直接导入模块的方法,调用时不用命名模块:
from os import getcwd
print getcwd()
from os import getcwd
print getcwd()
当你只导入了 getcwd
而没有导入 os
这怎么行 os.getcwd