python-列表转字符串

#列表转字符串(字符串加数字):
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)

 

posted @ 2018-05-21 18:10  benchdog  阅读(27616)  评论(0编辑  收藏  举报