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

python-列表转字符串

时间:2018-05-21 19:41:02      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:pytho   字符串   join   code   str   print   col   python   nbsp   

#列表转字符串(字符串加数字):
li = [11, 22, 33, "asd", "xyz", "879", "hello"]
s = ""
for item in li:
    s = s + str(item)
print(s)

 

#列表转字符串(只有字符串):
li = ["ety", "xyz", "hello", "world"]
s = "".join(li)
print(s)

 

python-列表转字符串

标签:pytho   字符串   join   code   str   print   col   python   nbsp   

原文地址:https://www.cnblogs.com/benchdog/p/9068591.html

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