字符串 格式化
用法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