当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String format_map方法用法及代码示例


Python 的 String.format_map(~) 方法提供字典中的键,将返回连接成字符串的相应值。

参数

1. Mapping | Dictionary

返回值

以串联字符串的形式返回字典中给定键的对应值。

例子

基本用法

# The string we will use format_map(~) method on.
our_string = "Welcome {fname} {lname}"
# Dictionary to pass through as an argument to format_map(~)
dictionary = {'fname':'Sky','lname':'Towner'}
# Apply format_map(~) method to our_string
our_string.format_map(dictionary)



'Welcome Sky Towner'

相关用法


注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | format_map method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。