字符串 格式化

用法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

 

 

posted @ 2024-08-17 16:41  tslam  阅读(4)  评论(0编辑  收藏  举报