parsingerror专题

解决configparser模块读取配置文件报ParsingError: Source contains parsing errors错误

如何使用configParser进行CONFIGPARSER而不会获得valueError 现象: 使用configparser模块读取配置文件的数据是出现如下错误: 分析解决: 创建 ConfigParser 实例时,改用如下的方式:(知道具体原因的欢迎留言交流~) c = configparser.ConfigParser(allow_no_value=True)  修正后