摘要:
https://blog.csdn.net/a5186050/article/details/77966095 阅读全文
摘要:
import configparsercf = configparser.ConfigParser() cf.read('config.ini') # 获取配置文件对象 app_name = cf.get('test-client', "path") # 读取test-client模块下的path变 阅读全文
摘要:
import os print(os.environ['HOME'])environ 是以键值对的形式存放的就是python的字典,源码如下 linux 查看环境变量命令 :env 阅读全文