How to convert list to string
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How to convert list into a string?
如何使用python将列表转换为字符串?
使用
1 2 | list1 = ['1', '2', '3'] str1 = ''.join(list1) |
或者,如果列表是整数,在连接元素之前转换它们。
1 2 | list1 = [1, 2, 3] str1 = ''.join(str(e) for e in list1) |
1 2 3 | >>> L = [1,2,3] >>>"".join(str(x) for x in L) '1 2 3' |
1 2 | L = ['L','O','L'] makeitastring = ''.join(map(str, L)) |