标签: python configparser
有人在段名中有一种处理通配符的优雅方法吗?
我看到的是这样的:
[DEFAULT] foo = 1 bar = 2 [ABC???] foo = 11 [XYZ???] bar = 20
答案 0 :(得分:1)
可能像
[s for s in my_config_parser.sections() if s.startswith('ABC')]