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