configparser操作配置文件

Posted yancy03

tags:

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

import configparser

conf = configparser.ConfigParser()
file_path = "E:optimize_allchipsconfiglocal.ini"
print(conf.read(file_path, encoding=‘utf8‘))
print(conf.sections()) # 读取配置文件截点
print(conf.options(‘RegisterElement‘)) # 读取截点下的内容
print(conf.items(‘RegisterElement‘)) # 读取截点下内容所有的键值对
print(conf.get(‘RegisterElement‘, ‘home_login‘)) # 读取截点下的指定内容








以上是关于configparser操作配置文件的主要内容,如果未能解决你的问题,请参考以下文章

Python操作配置文件configparser模块

configparser操作配置文件

配置文件操作模块,configparser

python的ConfigParser读取设置配置文件

pythopn configparser 模块(配置)

python使用configparser读取ini格式的配置文件