Python join()用法及代碼示例- 純淨天空
文章推薦指數: 80 %
用法: string_name.join(iterable) string_name:It is the name of string in which joined elements of iterable will be stored. 參數 ...
當前位置:首頁>>代碼示例
>>用法及示例精選
>>正文
join()方法是一種字符串方法,它返回一個字符串,在該字符串中,序列元素已通過str分隔符進行了連接。
用法:
string_name.join(iterable)
string_name:Itisthenameofstringinwhich
joinedelementsofiterablewillbe
stored.
參數:join()方法采用可迭代的對象,這些對象能夠一次返回一個成員。
一些示例是列表,元組,字符串,字典和集合
返回值:join()方法返回一個與iterable元素串聯的字符串。
類型錯誤:如果迭代器包含任何非字符串值,則會引發TypeError異常。
以下示例程序旨在說明join()方法的用法:
#Pythonprogramtodemonstratethe
#useofjoinfunctiontojoinlist
#elementswithacharacter.
list1=['1','2','3','4']
s="-"
#joinselementsoflist1by'-'
#andstoresinstings
s=s.join(list1)
#joinusetojoinalistof
#stringstoaseparators
print(s)
輸出:
1-2-3-4
用空字符串連接。
#Pythonprogramtodemonstratethe
#useofjoinfunctiontojoinlist
#elementswithoutanyseparator.
#Joiningwithemptyseparator
list1=['g','e','e','k','s']
print("".join(list1))
輸出:
geeks
相關用法
Pythonos.path.join()用法及代碼示例
Numpystringjoin()用法及代碼示例
Pythontell()用法及代碼示例
Pythonint()用法及代碼示例
Pythonord()用法及代碼示例
Pythonoct()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 join()functioninPython。
非經特殊聲明,原始代碼版權歸原作者所有,本譯文的傳播和使用請遵循“署名-相同方式共享4.0國際(CCBY-SA4.0)”協議。
延伸文章資訊
- 1join - 用法_例句 - 海词词典
join作「連接」解時,可用作及物動詞。這時主語多為人,賓語是「被連接」的兩個客體,也可以其中一個客體作賓語,而以to引出第 ...
- 2是中式英語...「join」的4個錯誤用法別再犯
- 3join in中文, join in是什麼意思:參加…
join in中文::參加…,點擊查查權威綫上辭典詳細解釋join in的中文翻譯,join in的發音,音標,用法和例句等。
- 4join with中文, join with是什麼意思 - 查查綫上辭典
join with中文:和……結合…,點擊查查權威綫上辭典詳細解釋join with的中文翻譯,join with的發音,音標,用法和例句等。
- 5join, join in, take part in 和attend 的用法比较 - 天星教育
最佳答案 · 1)join有两个用法: · 2)join in多指参加小规模的活动如“球赛、游戏”等,常用于日常口语。 · 3)take part in 指参加会议或群众性活动等,着重说明句子主...