-3

有没有人有一种优雅的方式来处理部分名称中的通配符?

我正在寻找的是这样的:

[DEFAULT]
foo = 1
bar = 2

[ABC???]
foo = 11

[XYZ???]
bar = 20
4

1 回答 1

2

也许像

[s for s in my_config_parser.sections() if s.startswith('ABC')]
于 2013-06-17T17:16:57.797 回答