0%

Python获取环境变量

方法一

返回值为字符串类型

1
2
import os
os.getenv("KEY")

方法二

返回值为bytes类型

1
2
import os
os.getenvb("KEY")