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

时间:2012-02-17 21:46:49

标签: python configparser

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

目前,我的代码如下:

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

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

1 个答案:

答案 0 :(得分:14)

根据2.7.2文档:

  

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