好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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

前言:

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

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

错误代码:

1 config=configparser.ConfigParser()

解决方案:

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

1 config=configparser.RawConfigParser()

查看更多关于python读取ini文件时,特殊字符的读取的详细内容...

  阅读:29次