python configparser写入默认部分
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必创建 DEFAULT 部分,它已经存在。您可以立即在其中设置值。
正如 wim 所指出的,您在创建 ConfigParser 实例时设置为默认值的值也将写入 DEFAULT 部分。
You don't have to create the DEFAULT section, it already exists. You can set values in it right away.
The values you set as defaults when creating the ConfigParser instance will also get written to the DEFAULT section, as wim noted.