用法1
使用字典中的對應值替換字串中的佔位符
NAMESPACES = {'w': 'http://schemas.openxmlformats.org/wordprocessingml/2006/main'} def _name(name): """ 作用: 是使用字典中的對應值替換字串中的佔位符 """ return name.format(**NAMESPACES) print(_name('{{{w}}}p')) # {http://schemas.openxmlformats.org/wordprocessingml/2006/main}p