码迷,mamicode.com
首页 > 其他好文 > 详细

configparser模块

时间:2019-07-06 23:23:40      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:encoding   expand   float   config   enc   OLE   对象   res   ons   

configparser模块:操作配置文件

# my.ini配置文件内容
# 注释:该配置文件中,值直接书写,但有四种类型
# -- int float boolean str
# section
[server]
# name:option | value:mysql
name = mysql
version = 20000

[client]
name = owen
adress = 192.168.11.174

 

import configparser
# 初始化配置文件的操作对象
parser = configparser.ConfigParser()
# 读
parser.read(‘my.ini‘, encoding=‘utf-8‘)
# 所有section
print(parser.sections())
# 某section下所有option
print(parser.options(‘section_name‘))
# 某section下某option对应的值
print(parser.get(‘section_name‘, ‘option_name‘))         #int类型

print(parser.getfloat(‘section_name‘, ‘option_name‘))  #float类型

# 写
parser.set(‘section_name‘, ‘option_name‘, ‘value‘)
parser.write(open(‘my.ini‘, ‘w‘))

configparser模块

标签:encoding   expand   float   config   enc   OLE   对象   res   ons   

原文地址:https://www.cnblogs.com/zhangdajin/p/11144597.html

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