成功解决TypeError: sequence item 0: expected str instance, list found
成功解决TypeError: sequence item 0: expected str instance, list found
解决问题
TypeError: sequence item 0: expected str instance, list found
解决思路
Type Error:序列项0:应为str实例,但找到list
解决方法
根据错误提示,可知list中包含数字,所以,不可以直接转化成字符串,要么直接修改列表内非字符串的元素,要么将列表内的元素循环转为字符串格式,如下转换所示:
" ".join('%s' %a for a in lists)
赞 (0)