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