Python join()用法及代碼示例- 純淨天空

文章推薦指數: 80 %
投票人數:10人

用法: 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)”協議。



請為這篇文章評分?