我有以下代码,其中filePath
是磁盘上cfg文件的路径。当我解析它时,它还会读取内联注释(空格+ ";"
)。
结果的某些行:
xlsx:是的;评论在这里html:是的;评论在这里
应该是:
xlsx:是的
html:是的
def ParseFile(filePath):
"""this function returns the parsed CFG file"""
parser = configparser.ConfigParser()
print("Reading config file from %s" % filePath)
parser.read(filePath)
for section in parser.sections():
print("[ SECTION: %s ]" % section)
for option in parser.options(section):
print("%s:%s" % (option, parser.get(section, option)))
答案 0 :(得分:2)
默认情况下不启用内嵌注释。
来自the docs中的示例:
[You can use comments]
# like this
; or this
# By default only in an empty line.
# Inline comments can be harmful because they prevent users
# from using the delimiting characters as parts of values.
# That being said, this can be customized.
允许使用';'
进行内联评论:
parser = configparser.ConfigParser(inline_comment_prefixes=';')