Python:部分名称中带有通配符的ConfigParser

时间:2013-06-17 17:10:32

标签: python configparser

有人在段名中有一种处理通配符的优雅方法吗?

我看到的是这样的:

[DEFAULT]
foo = 1
bar = 2

[ABC???]
foo = 11

[XYZ???]
bar = 20

1 个答案:

答案 0 :(得分:1)

可能像

[s for s in my_config_parser.sections() if s.startswith('ABC')]