#列表转字符串(字符串加数字):
法一:
li = [11, 22, 33, "asd", "xyz", "879", "hello"]
s = ""
for item in li:
s = s + str(item)
print(s)
法二:
li = [11, 22, 33, "asd", "xyz", "879", "hello"]
s= "".join(str(iterm) for iterm in li)
print(s)
#列表转字符串(只有字符串):
li = ["ety", "xyz", "hello", "world"]
s = "".join(li)
print(s)