码迷,mamicode.com
首页 > 编程语言 > 详细

python configparse

时间:2018-09-28 19:05:08      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:parse   school   写入   add   exists   one   match   .config   0.12   

# 参考: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

标签:parse   school   写入   add   exists   one   match   .config   0.12   

原文地址:https://www.cnblogs.com/lajiao/p/9719947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!