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


Python join()用法及代码示例



join()方法是一种字符串方法,它返回一个字符串,在该字符串中,序列元素已通过str分隔符进行了连接。

用法:

string_name.join(iterable) 

string_name:It is the name of string in which
             joined elements of iterable will be
             stored.

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


返回值:join()方法返回一个与iterable元素串联的字符串。

类型错误:如果迭代器包含任何非字符串值,则会引发TypeError异常。

以下示例程序旨在说明join()方法的用法:

# 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

用空字符串连接。

# 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大神的英文原创作品 join() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。