新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)Python教程:Python怎么將列表轉字符串
python怎么將列表轉字符串

例子:
將列表 temp_list = ['h', 'e', 'l', 'l', 'o'] 轉換成字符串'hello',代碼如下:
temp_list = ['h', 'e', 'l', 'l', 'o'] result = ''.join(temp_list) print(result) hello
推薦學習《Python教程》。
字符串對象的方法join其描述如下:
大概意思是:s.join(iterable)是將括號內(nèi)的迭代對象(如列表)使用s字符串作為鏈接將迭代對象中的元素拼接成一個字符串,返回該字符串。
def join(self, iterable): # real signature unknown; restored from __doc__ """ S.join(iterable) -> str Return a string which is the concatenation of the strings in the iterable. The separator between elements is S. """ return ""
網(wǎng)頁標題:創(chuàng)新互聯(lián)Python教程:Python怎么將列表轉字符串
當前路徑:http://www.dlmjj.cn/article/dpddijh.html


咨詢
建站咨詢
