python3的configparser读取.ini文件不区分大小写问题踩坑记录

python3的configparser读取.ini文件不区分大小写问题踩坑记录_第1张图片
lower将其全部转换成了小写
解决方案:

class myconf(configparser.ConfigParser):
    def __init__(self, defaults=None):
        configparser.ConfigParser.__init__(self, defaults=defaults)

    def optionxform(self, optionstr):
        return optionstr

cf = myconf()
cf.read("config.ini")
exclude_list = cf.options('exclude')

你可能感兴趣的:(Python,python)