命令:‘‘.join(list)
其中,引号中是字符之间的分割符,如“,”,“;”,“\t”等等
如:
list = ["1", "2", "3", "4", "5"]
‘‘.join(list) 结果即为:12345
‘,‘.join(list) 结果即为:1,2,3,4,5
# 坑: list 里面的数据类型必须是str的,int不可以。
Posted zzllovehappy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中list转字符串相关的知识,希望对你有一定的参考价值。
命令:‘‘.join(list)
其中,引号中是字符之间的分割符,如“,”,“;”,“\t”等等
如:
list = ["1", "2", "3", "4", "5"]
‘‘.join(list) 结果即为:12345
‘,‘.join(list) 结果即为:1,2,3,4,5
# 坑: list 里面的数据类型必须是str的,int不可以。
以上是关于python中list转字符串的主要内容,如果未能解决你的问题,请参考以下文章
python 中字符串list/列表元素转化为数值型/数字的方法分析
Python列表list转字符串报错:expected str instance, int found