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

python 配置文件返回的两种方式,写法不一样而已

时间:2019-04-24 14:43:39      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:host   inf   cme   方式   mod   配置文件   返回   两种   mode   

配置文件如下:
[MODE]
mode:{ "register":"all"} 或者 mode = {"register":"all"}
注意:只是:换成了=,效果是一样的。

[basic_info]
HostURL: http://www.baidu.com 或:
HostURL=http://www.baidu.com

@staticmethod
def get_config(file_path, section, option):
cf = configparser.ConfigParser()
cf.read(file_path)
  
  # 方式一:
 return cf[section][option]
  或者
  # 方式二:
  return cf[section].get(option)
   

python 配置文件返回的两种方式,写法不一样而已

标签:host   inf   cme   方式   mod   配置文件   返回   两种   mode   

原文地址:https://www.cnblogs.com/zzllovehappy/p/10762156.html

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