gpt4 book ai didi

python - 使用 ConfigParser 处理重复键

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:45 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Python Config Parser (Duplicate Key Support)

我正在尝试用 Python 读取 INI 格式的项目文件。该文件在一个部分中包含重复键(具有唯一值)。例如,其中一个部分如下所示:

[Source Files]
Source="file1.c"
Source="file2.c"
Source="file3.c"

如果我使用下面的代码阅读这篇文章

config = configparser.ConfigParser( strict=False )
config.read( "project/file/name" )
print( config.get( "Source Files", "Source" ) )

结果是

"file3.c"

有没有办法获取键 Source 的所有值的列表?我愿意使用其他一些方法来解析文件。

请注意,我无法更改文件格式。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com