其他分享
首页 > 其他分享> > list 中含有数字,如何将list 转换为str

list 中含有数字,如何将list 转换为str

作者:互联网

一般使用list 转str

使用以下办法

list_name =["张三","李四","王五","陈留"]
list_to_str= ";".join(list_name)

#即可

#但是如果l

list_dump=['1',1,3,4,5,'nihao']

list_to_str= ";".join(ist_dump) #就会报错

我们则要将list 中的int 类型转换为str 再进行合并


list_to_str= ";".join(str(xx) for xx in list_dump)

 

标签:join,name,dump,list,xx,str,转换
来源: https://www.cnblogs.com/ningy1009/p/16529117.html