L = [1,2,3,4,5]
print(','.join(L))
以上写法会报错,TypeError: sequence item 0: expected str instance, int found
原因:list包含数字,不能直接转化成字符串
修改成 print(','.join(str(n) for n in L)) 就可以了
python list转换字符串报错 TypeError: sequence item 0: expected str instance, int found
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
python 日期字符串转换为指定格式的日期
python 日期字符串转换为指定格式的日期
字符串 python 返回结果 -
python int str 拼接 python int 字符串
引入:变量的是用来反映状态以及状态变化的,毫无疑问针对不同的状态就应该用不同类型的数据去标识。1. 数字类型• python中你可以对数字就行下表中的计算
python int str 拼接 字符串 偏移量 双引号