python读取ini文件时,特殊字符的读取

python学习网 2019-08-21 15:50:01

前言:

使用python在读取配置文件时,由于配置文件中存在特殊字符,读取时出现了以下错误:

1 configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: '%sbc09'

错误代码:

1 config=configparser.ConfigParser()

解决方案:

使用 RawConfigParser()方法进行读取即可,代码如下:

1 config=configparser.RawConfigParser()

 


        
阅读(2307) 评论(0)