标签: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)
标签:pytho 字符串 join code str print col python nbsp
原文地址:https://www.cnblogs.com/benchdog/p/9068591.html