我是Python的新手。
我有以下配置文件
test.conf
path=Dtest.appender\=console
以下是我使用ConfigParser
从.conf文件中读取配置的python代码from ConfigParser import SafeConfigParser
def func(config=SafeConfigParser):
with open("test.conf") as stream
stream = StringIO("[env]\n" + stream.read())
config.readfp(stream)
for item in config.items('env'):
print(item)
如果我打印配置值,我读取它打印如下,带有额外的反斜杠。
('path', 'Dtest.appender\\=console')
为什么会这样?我该如何解决这个问题?