如果我运行以下脚本:
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'
答案 0 :(得分:3)
你所追求的是unrepr=True
config = ConfigObj(unrepr=True)
当您回写文件时,将保留引号。
答案 1 :(得分:0)
我从未使用过ConfigObj模块,但是从documentation开始,您可以通过在实例化ConfigObj时传递插值参数来实现此目的。
尝试:
config = ConfigObj(interpolation = 'Template')
或
config = ConfigObj(interpolation = False)