python ConfigParser从配置文件中检索变量的示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python ConfigParser从配置文件中检索变量的示例相关的知识,希望对你有一定的参考价值。

def ConfigSectionMap(section):
    dict1 = {}
    options = Config.options(section)
    for option in options:
        try:
            dict1[option] = Config.get(section, option)
            if dict1[option] == -1:
                DebugPrint("skip: %s" % option)
        except:
            print("exception on %s!" % option)
            dict1[option] = None
    return dict1

以上是关于python ConfigParser从配置文件中检索变量的示例的主要内容,如果未能解决你的问题,请参考以下文章

configparser 从 zip 加载配置文件

Python:使用 ConfigParser vs json 文件 [关闭]

Python中配置文件编写configparser

三十python中configparser配置文件相关操作

如何从 Python ConfigParser .items() 中排除默认值?

python的ConfigParser读取设置配置文件