AI智能
改变未来

成功解决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中包含数字,所以,不可以直接转化成字符串,要么直接修改列表内非字符串的元素,要么将列表内的元素循环转为字符串格式,如下转换所示:

[code]\" \".join(\'%s\' %a for a in lists)

 

 

 

 

 

 

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » 成功解决TypeError: sequence item 0: expected str instance, list found