當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。