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'
相关用法
- Python String format_map()用法及代码示例
- Python String format方法用法及代码示例
- Python String format()用法及代码示例
- Python String find方法用法及代码示例
- Python String find()用法及代码示例
- Python String count方法用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String Center()用法及代码示例
- Python String zfill方法用法及代码示例
- Python String rstrip方法用法及代码示例
- Python String decode()用法及代码示例
- Python String count()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String endswith方法用法及代码示例
- Python String rsplit()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rjust方法用法及代码示例
- Python String rpartition()用法及代码示例
- Python String rpartition方法用法及代码示例
- Python String ljust方法用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | format_map method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。