如何使用 ConfigParser 将值设置为 None?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 2.7.2 文档:
According to the 2.7.2 docs: