摘要: https://blog.csdn.net/a5186050/article/details/77966095 阅读全文
posted @ 2020-07-06 19:36 Tarzen 阅读(420) 评论(0) 推荐(0) 编辑
摘要: import configparsercf = configparser.ConfigParser() cf.read('config.ini') # 获取配置文件对象 app_name = cf.get('test-client', "path") # 读取test-client模块下的path变 阅读全文
posted @ 2020-07-06 18:43 Tarzen 阅读(141) 评论(0) 推荐(0) 编辑
摘要: import os print(os.environ['HOME'])environ 是以键值对的形式存放的就是python的字典,源码如下 linux 查看环境变量命令 :env 阅读全文
posted @ 2020-07-06 15:57 Tarzen 阅读(1113) 评论(0) 推荐(0) 编辑