python学习-加载配置文件

Posted qsmyjz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习-加载配置文件相关的知识,希望对你有一定的参考价值。


import configparser

# 实例化
cp = configparser.ConfigParser()

# 加载配置文件
cp.read("my_config.conf",encoding="utf-8")
# print(fs)
# section []
# option section之下的选项
# 获取 所有的 sections
print(cp.sections())

# 获取某一个section下的选项
print(cp.options("student"))

# 获取某一个section下的所有键值对
print(cp.items("student")) # 列表

# 获取某一个section下的某一个options具体的值
print(cp.get("student","class")) # 都字符串类型

# 整数
print(cp.getint("student","age"))
# 符点数
print(cp.getfloat("student","weight"))
# 布尔值
print(cp.getboolean("student","res"))
# 转成列表
hobby = cp.get("student","hobby")
print(eval(hobby))

 

# 拿到配置文件里所有值。# 思考??
# 类和对象 === 封装。

以上是关于python学习-加载配置文件的主要内容,如果未能解决你的问题,请参考以下文章

python小脚本Yaml配置文件动态加载

python selenium webdriver问题(selenium.common.exceptions.WebDriverException:消息:“无法加载配置文件。配置文件目录:)

Python 配置文件加载且自动更新(watchdog)

java学习-配置文件加载

linux 上修改了nginx.conf 怎么重新加载配置文件生效

spring-boot学习五:Spring boot配置文件的加载位置