gpt4 book ai didi

python - 如何读取 Windows 环境变量值?

转载 作者:IT老高 更新时间:2023-10-28 20:31:07 30 4
gpt4 key购买 nike

我试过了:

os.environ['MyVar']

但它没有用!有没有适合所有操作系统的方法?

最佳答案

尝试使用以下方法:

os.getenv('MyVar')

来自 documentation :

os.getenv(varname[, value])

Return the value of the environment variable varname if it exists, or value if it doesn’t. value defaults to None.

Availability: most flavors of Unix, Windows

所以在测试之后:

>>> 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/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com