python configparser写入默认部分

发布于 2024-12-10 17:12:21 字数 137 浏览 0 评论 0原文

我正在使用 python 中的 configparser 模块来读取和写入一些 .ini 样式文件。我希望能够创建并写入 DEFAULTS 部分,但是,它似乎被硬编码为不允许创建这样的部分。

是否可以?甚至建议这样做?

i'm using the configparser module in python to read and write some .ini style files. i want to be able to create and write to the DEFAULTS section, however, it appears to be hardcoded to not allow the creation of such a section.

is it possible? or even advised to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿透光 2024-12-17 17:12:21

您不必创建 DEFAULT 部分,它已经存在。您可以立即在其中设置值。

config = ConfigParser.RawConfigParser()
config.set('DEFAULT', 'name2', 'value2')
with open('file.conf', 'wb') as cf:
    config.write(cf)

正如 wim 所指出的,您在创建 ConfigParser 实例时设置为默认值的值也将写入 DEFAULT 部分。

You don't have to create the DEFAULT section, it already exists. You can set values in it right away.

config = ConfigParser.RawConfigParser()
config.set('DEFAULT', 'name2', 'value2')
with open('file.conf', 'wb') as cf:
    config.write(cf)

The values you set as defaults when creating the ConfigParser instance will also get written to the DEFAULT section, as wim noted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文