# 参考: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
Posted naniandiam
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python configparse相关的知识,希望对你有一定的参考价值。
以上是关于python configparse的主要内容,如果未能解决你的问题,请参考以下文章
python configparser 如何去除等号附近的空格
python封装configparser模块获取conf.ini值(优化版)
Jenkins运行python脚本出现 configparser.NoSectionError: No section: 'XXXXXX'