Python 的 str.join(~)
方法连接可迭代的元素并返回结果字符串。
参数
1. iterable
| iterable
其元素要连接的可迭代对象。
返回值
可迭代元素的串联字符串。
例子
基本用法
使用逗号分隔符连接可迭代 x
的元素:
x = ('a', 'b', 'c')
separator = ','
separator.join(x)
'a,b,c'
请注意,元组 x
中的元素在每个项目之间使用分隔符 ','
连接起来。
TypeError
使用逗号分隔符连接可迭代 x
的元素:
x = {1, 2, 3}
separator = ','
print(separator.join(x))
TypeError: sequence item 0: expected str instance, int found
由于可迭代的 x
中存在非字符串值,因此引发 TypeError
。
与词典一起使用
join(~)
方法将连接字典的键而不是值:
cars = {"Ferrari": "red", "Porsche": "silver", "Bentley": "black"}
separator = " > "
separator.join(cars)
'Ferrari > Porsche > Bentley'
相关用法
- Python String join()用法及代码示例
- Python String count方法用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String Center()用法及代码示例
- Python String zfill方法用法及代码示例
- Python String rstrip方法用法及代码示例
- Python String decode()用法及代码示例
- Python String count()用法及代码示例
- 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()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String split方法用法及代码示例
- Python String splitlines方法用法及代码示例
- Python String strip方法用法及代码示例
- Python String translate()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | join method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。