python configparse

Posted naniandiam

tags:

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

# 参考:https://www.cnblogs.com/lily1989/p/8401005.html
#  https://blog.csdn.net/willhuo/article/details/49512557
import configparser
config = configparser.ConfigParser()
config.read(\'cost.ini\')
# 读取
print(config.get(\'tests\', \'ip\'))
# 或者print(config[\'tests\'][\'ip\'])
# 写入
try:
    config.add_section("School")
    config.set("School","IP","10.15.40.123")
except configparser.DuplicateSectionError:
    print("Section \'Match\' already exists")


with open(\'cost.ini\',\'w\') as fp:
    config.write(fp)

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

python configparser 如何去除等号附近的空格

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

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

python内置库--configparser

Python中ConfigParser模块详谈

Jenkins运行python脚本出现 configparser.NoSectionError: No section: 'XXXXXX'