Python join() 方法用于将字符串与可迭代对象连接起来。它返回一个新字符串,它是可迭代字符串的串联。如果 iterable 包含任何非字符串值,它会抛出异常 TypeError。
它允许各种迭代,如:列表、元组、字符串等。
签名
join(iterable)
参数
iterable:iterable 对象,如:List、Tuple、String 等。
返回
如果 iterable 包含任何非字符串值,则它返回一个新字符串或异常 TypeError。
让我们看一些 join() 方法的例子来理解它的函数。
Python 字符串 join() 方法示例 1
使用 List 可迭代实现 join() 方法的简单示例,请参见下面的示例。
# Python join() method example
# Variable declaration
str = ":" # string
list = ['1','2','3'] # iterable
# Calling function
str2 = str.join(list)
# Displaying result
print(str2)
输出:
1:2:3
Python 字符串 join() 方法示例 2
带有空字符串的列表可迭代连接并生成一个新字符串,请参见下面的示例
# Python join() method example
# Variable declaration
str = "" # string
list = ['J','a','v','a','t','p','o','i','n','t'] # iterable
# Calling function
str2 = str.join(list)
# Displaying result
print(str2)
输出:
Javatpoint
Python 字符串 join() 方法示例 3
带有 Set iterable 的 join() 方法示例。 Set 包含无序元素并每次产生不同的输出。请参阅下面的示例。
# Python join() method example
# Variable declaration
str = "->" # string
list = {'Java','C#','Python'} # iterable
# Calling function
str2 = str.join(list)
# Displaying result
print(str2)
输出:
Java->Python->C#
Python 字符串 join() 方法示例 4
在字典的情况下,此方法仅连接键。确保键是字符串,否则会抛出异常。
# Python join() method example
# Variable declaration
dic = {'key1':1, 'key2':2}
str = '&'
# Calling function
str = str.join(dic)
# Displaying result
print(str)
输出:
key1&key2;
相关用法
- Python String Center()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String zfill()用法及代码示例
- Python String isspace()用法及代码示例
- Python String Encode()用法及代码示例
- Python String endswith()用法及代码示例
- Python String index()用法及代码示例
- Python String rindex()用法及代码示例
- Python String swapcase()用法及代码示例
- Python String expandtabs()用法及代码示例
- Python String rjust()用法及代码示例
注:本文由纯净天空筛选整理自 Python String join() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。