configparser模块
配置文件test.ini如下:
[section1]
k1 = v1
name = egon
age:78
salary = 31.5
is_admin = true
[section2]
k2 = v2
执行文件:
import configparser
config=configparser.ConfigParser()
config.read('test.ini')
# 1、获取sections
# print(config.sections())
# 2、获取某一section下的所有options
# print(config.options('section1'))
# 3、获取items
# print(config.items('section1'))
# 4、
# res=config.get('section1','name')
# print(res,type(res))
# res=config.getint('section1','age')
# print(res,type(res))
# res=config.getboolean('section1','is_admin')
# print(res,type(res))
# res=config.getfloat('section1','salary')
# print(res,type(res))
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步