基于 ConfigParser 模块,我如何过滤掉并抛出 ini 文件中的每条评论?
import ConfigParser
config = ConfigParser.ConfigParser()
config.read("sample.cfg")
for section in config.sections():
print section
for option in config.options(section):
print option, "=", config.get(section, option)
例如。在上面的基本脚本下面的 ini 文件中打印出进一步的注释行,例如:
something = 128 ; comment line1
; further comments
; one more line comment
我需要的是其中只有部分名称和纯键值对,没有任何注释。ConfigParser 是否以某种方式处理这个问题,或者我应该使用正则表达式......还是?干杯