是因为在 config.ini 文件中包含了 % 这种特殊字符
换一种方式进行读取配置文件原本代码:cf= configparser.ConfigParser()
替换成:cf = configparser.RawConfigParser()
参考:https://blog.csdn.net/s740556472/article/details/82889758