我在Python 2.7中使用ConfigParser从配置文件中读取,我想知道如何读取一个值,使其在Python中设置为常量None
。
目前,我的代码如下:
config.set("Test Series Parameters", "Test Series Parameter", None)
但是,这显示为Test Series Parameter = "None"
(作为字符串)。
答案 0 :(得分:14)
根据2.7.2文档:
allow_no_value
为true
时(默认值为False
),没有值的选项 被接受;为这些提供的值是None
。这有帮助吗?