gpt4 book ai didi

python - 获取 ConfigObj 以引用字符串

转载 作者:太空宇宙 更新时间:2023-11-04 01:35:29 28 4
gpt4 key购买 nike

如果我运行以下脚本:

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'

最佳答案

你想要的是 unrepr=True

config = ConfigObj(unrepr=True)

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

关于python - 获取 ConfigObj 以引用字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10267253/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com