我正在尝试更改python中的目录。我第一次尝试:
>>> os.getcwd()
得到了:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'os' is not defined
然后我尝试了
>>> os.chir('/directory/i/want/to/change/to')
但我仍然有
NameError: name 'os' is not defined
如何定义操作系统?
答案 0 :(得分:21)
您需要先导入os模块:
import os
os.getcwd()
答案 1 :(得分:6)
import os
。也许您应该阅读the tutorial?
答案 2 :(得分:4)
您是否导入了os模块?
import os
print(os.getcwd())
答案 3 :(得分:2)
您需要导入包
import os