前言:
使用python在读取配置文件时,由于配置文件中存在特殊字符,读取时出现了以下错误:
1 configparser.InterpolationSyntaxError: ‘%‘ must be followed by ‘%‘ or ‘(‘, found: ‘%sbc09‘
错误代码:
1 config=configparser.ConfigParser()
解决方案:
使用 RawConfigParser()方法进行读取即可,代码如下:
1 config=configparser.RawConfigParser()
查看更多关于python读取ini文件时,特殊字符的读取的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did172730