标签:encoding expand float config enc OLE 对象 res ons
# 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‘))
标签:encoding expand float config enc OLE 对象 res ons
原文地址:https://www.cnblogs.com/zhangdajin/p/11144597.html