码迷,mamicode.com
首页 > 编程语言 > 详细

python列表转换为字符串

时间:2019-11-28 23:01:31      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:需要   str   join   字符   转换   使用   size   font   span   

对于非纯字符串组成的列表,需要使用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列表转换为字符串

标签:需要   str   join   字符   转换   使用   size   font   span   

原文地址:https://www.cnblogs.com/WebLinuxStudy/p/11954315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!