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操作配置文件的主要内容,如果未能解决你的问题,请参考以下文章