如何将列表转换为字符串

如何使用Python将列表转换为字符串

回答:

通过使用 ''.join

list1 = ['1', '2', '3']

str1 = ''.join(list1)

或者,如果列表是整数,则在连接元素之前将其转换。

list1 = [1, 2, 3]

str1 = ''.join(str(e) for e in list1)

以上是 如何将列表转换为字符串 的全部内容, 来源链接: utcz.com/qa/436062.html

回到顶部