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