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

configparser模块

时间:2018-06-25 17:51:30      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:cti   use   int   布尔   tin   section   beautiful   import   ini   

import configparser

config=configparser.ConfigParser()
config.read(‘config.ini‘) #a.cfg a.ini a.cnf


# 并不是字典 key = value 形式
# print(config.sections()) # 查看所有的标题
# print(config.options(‘egon‘)) # 查看标题egon下所有的key
# print(config.items(‘egon‘)) # 查看标题egon下所有的key,value


# res=config.get(‘egon‘,‘age‘) # 查看标题egon下age的值,字符串格式
# res=config.getint(‘egon‘,‘age‘) # 查看标题egon下age的值,整型格式
# print(res,type(res))

# res=config.getfloat(‘egon‘,‘salary‘)# 浮点型
# print(res,type(res))

# res=config.getboolean(‘egon‘,‘is_beautiful‘)# 布尔型
# print(res,type(res))

附上文件:
  
  
[egon]
k1 = v1
k2:v2
user=egon
age=18
is_admin=true
salary=31

[alex]
k1 = v1

configparser模块

标签:cti   use   int   布尔   tin   section   beautiful   import   ini   

原文地址:https://www.cnblogs.com/Roc-Atlantis/p/9225315.html

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