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列表转换为字符串的主要内容,如果未能解决你的问题,请参考以下文章