python 配置文件返回的两种方式,写法不一样而已
Posted zzllovehappy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 配置文件返回的两种方式,写法不一样而已相关的知识,希望对你有一定的参考价值。
配置文件如下:
[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 配置文件返回的两种方式,写法不一样而已的主要内容,如果未能解决你的问题,请参考以下文章