python列表转换为字符串

Posted WebLinuxStudy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python列表转换为字符串相关的知识,希望对你有一定的参考价值。

对于非纯字符串组成的列表,需要使用map(str, 列表)转换,纯字符串组成的列表则不需要转换

list1 = [1, 2, 3, 4, 5]
c = ‘,‘.join(map(str,list1))
print(c)
print(type(c))


list2 = [‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘]
d = ‘,‘.join(list2)
print(d)
print(type(d))


 

以上是关于python列表转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章

将字符串的python列表转换为字节数组

在 Python 中将字符串列表转换为整数(或双精度)

将列表项从字符串转换为int(Python)[重复]

将pandas列中的列表列表转换为字符串

python怎么把列表转换成字符串

在python中,列表,字典的相互转换?