configparser模块

Posted yelublue

tags:

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

import configparser

conf = configparser.ConfigParser()
#
# print(conf.sections())

conf.read("conf.ini")

print(conf.sections())


>>>[bitbucket.org, topsecret.server.com]

print(conf.default_section)
>>>DEFAULT #重复的点,都可以写在default里
增删改查

conf.remove_section("group1")

conf.add_section("group3")
conf[‘group3‘][‘name‘] = "Alex Li"
conf[‘group3‘][‘age‘] = "22"

  

以上是关于configparser模块的主要内容,如果未能解决你的问题,请参考以下文章

py15-configparser模块

configparser模块

Python Configparser模块读取写入配置文件

python封装configparser模块获取conf.ini值(优化版)

Python中ConfigParser模块详谈

25.Python序列化模块,hashlib模块, configparser模块,logging模块,异常处理