python應(yīng)用操作——組合多個(gè)字符串
提問(wèn)人:ylm發(fā)布時(shí)間:2020-09-29
如果你想拼接列表中的所有記號(hào),比如下面的例子:
In [44]: test = ['I', 'Like', 'Python', 'automation']
In [45]: ''.join(test)
Out[45]: 'ILikePythonautomation'
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
如果你想拼接列表中的所有記號(hào),比如下面的例子:
In [44]: test = ['I', 'Like', 'Python', 'automation']
In [45]: ''.join(test)
Out[45]: 'ILikePythonautomation'
點(diǎn)擊加載更多評(píng)論>>