我尝试了这个:
os.environ['MyVar']
但这没有用!
有什么方法适合所有操作系统吗?
最佳答案
尝试使用以下内容:
os.getenv('MyVar')
从documentation:
因此,在测试之后:
>>> import os
>>> os.environ['MyVar'] = 'Hello World!' # set the environment variable 'MyVar' to contain 'Hello World!'
>>> print os.getenv('MyVar')
Hello World!
>>> print os.getenv('not_existing_variable')
None
>>> print os.getenv('not_existing_variable', 'that variable does not exist')
that variable does not exist
>>> print os.environ['MyVar']
Hello World!
>>> print os.environ['not_existing_variable']
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/usr/lib/python2.4/UserDict.py", line 17, in __getitem__
def __getitem__(self, key): return self.data[key]
KeyError: 'not_existing_variable
如果环境变量存在,您的方法也将起作用。使用
os.getenv
的区别在于,它返回None
(或给定值),而os.environ['MyValue']
在变量不存在时给出KeyError异常。关于python - 如何读取Windows环境变量值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10496748/