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

例子:
將列表 temp_list = ['h', 'e', 'l', 'l', 'o'] 轉(zhuǎn)換成字符串'hello',代碼如下:
temp_list = ['h', 'e', 'l', 'l', 'o'] result = ''.join(temp_list) print(result) hello
推薦學(xué)習(xí)《Python教程》。
字符串對(duì)象的方法join其描述如下:
大概意思是:s.join(iterable)是將括號(hào)內(nèi)的迭代對(duì)象(如列表)使用s字符串作為鏈接將迭代對(duì)象中的元素拼接成一個(gè)字符串,返回該字符串。
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)頁(yè)名稱(chēng):創(chuàng)新互聯(lián)Python教程:Python怎么將列表轉(zhuǎn)字符串
網(wǎng)頁(yè)地址:http://www.5511xx.com/article/dpddijh.html


咨詢(xún)
建站咨詢(xún)
