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


Python String join()用法及代码示例


Python String join() 方法是一个字符串方法,它返回一个字符串,其中序列的元素已由 str 分隔符连接。

用法: 

string_name.join(可迭代)

参数:

join() 方法采用可迭代的——能够一次返回一个成员的对象。一些示例是列表、元组、字符串、字典和集合



返回值:

join() 方法返回一个与 iterable 元素连接的字符串。

类型错误

如果可迭代对象包含任何非字符串值,则会引发 TypeError 异常。

示例 1:join() 方法的用法

Python


# Python program to demonstrate the
# use of join function to join list
# elements with a character.
  
list1 = ['1','2','3','4'] 
  
s = "-"
  
# joins elements of list1 by '-'
# and stores in sting s
s = s.join(list1)
  
# join use to join a list of
# strings to a separator s
print(s)

输出:

1-2-3-4

示例 2:加入一个空字符串

Python


# Python program to demonstrate the
# use of join function to join list
# elements without any separator.
  
# Joining with empty separator
list1 = ['g','e','e','k', 's'] 
print("".join(list1))

输出:

geeks




相关用法


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