【发布时间】:2016-10-06 13:06:06
【问题描述】:
我有以下代码,其中filePath 是磁盘上cfg 文件的路径。当我解析它时,它还会读取内联 cmets(带有空格的 cmets + ";")。
结果的几行:
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)))
【问题讨论】:
标签: python-3.x parsing config configparser