2

如果我运行以下脚本:

from configobj import ConfigObj
config = ConfigObj()
config.filename = 'test.cfg'
config['keyword1'] = "the value"
config['keyword2'] = "'{0:s}'".format("the value")
config['keyword3'] = '"{0:s}"'.format("the value")
config.write()

输出是:

keyword1 = the value
keyword2 = "'the value'"
keyword3 = '"the value"'

有没有办法产生以下输出?

keyword1 = 'the value'
4

2 回答 2

3

你追求的是unrepr=True

config = ConfigObj(unrepr=True)

然后,当您写回文件时,引号将被保留。

于 2012-05-16T17:17:33.173 回答
0

我从未使用过 ConfigObj 模块,但是从文档看来,您可以通过在实例化 ConfigObj 时传递插值参数来实现这一点。

尝试:

config = ConfigObj(interpolation = 'Template')

或者

config = ConfigObj(interpolation = False) 
于 2012-04-22T11:14:22.820 回答