作者:E4b9a6, 创建:2021-06-15, 字数:588, 已阅:62, 最后更新:2021-06-15
在Windows中,INI文件默认不区别大小写,所以ConfigParser在读取INI文件时将丢失大小写信息
这一点,在文末的官方附录上有说明,修改也非常简单,ConfigParser允许传递一个返回字符串函数作为替换自带的解析字符串函数
to a function that takes a string argument and returns a string
实际例子如下
app_config_parser = ConfigParser()
app_config_parser.optionxform = str
参考资料