python中list转字符串

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转换为字符串?

python列表中的字符串,怎么转化成列表?

Python列表list转字符串报错:expected str instance, int found

Python列表list转字符串报错:expected str instance, int found

Python3 字符串str和列表list转换