如何使用 ConfigParser 将值设置为 None?

发布于 2025-01-06 22:18:25 字数 277 浏览 1 评论 0原文

我在 Python 2.7 中使用 ConfigParser 来读取配置文件,我想知道如何读取一个值,使其在 Python 中设置为常量 None

目前,我的代码如下:

config.set("Test Series Parameters", "Test Series Parameter", None)

但是,这显示为 Test Series Parameter = "None" (作为字符串)。

I'm using ConfigParser in Python 2.7 to read from a config file and I'm wondering how to read a value such that it's set to the constant None in Python.

Currently, my code is as follows:

config.set("Test Series Parameters", "Test Series Parameter", None)

However, this shows up as Test Series Parameter = "None" (as a string).

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

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

发布评论

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

评论(1

十级心震 2025-01-13 22:18:25

根据 2.7.2 文档:

allow_no_valuetrue(默认:False)时,没有值的选项
被接受;这些的值是None。这有帮助吗?

According to the 2.7.2 docs:

When allow_no_value is true (default: False), options without values
are accepted; the value presented for these is None. Does that help?

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