当我将此代码键入 python shell 时,它工作得非常好,但在程序中它会出错。
import os
h = os.environ['HOME']
在脚本中它给出了这个错误:
AttributeError: 'str' object has no attribute 'environ'
为什么会发生这种情况,有什么办法可以解决吗?
(我有点只是学习python,所以我不太了解。谷歌没有帮助)
当我将此代码键入 python shell 时,它工作得非常好,但在程序中它会出错。
import os
h = os.environ['HOME']
在脚本中它给出了这个错误:
AttributeError: 'str' object has no attribute 'environ'
为什么会发生这种情况,有什么办法可以解决吗?
(我有点只是学习python,所以我不太了解。谷歌没有帮助)