搜索

...AttributeError: 'int' object has no attribute 'encode'

发布网友 发布时间:2024-10-24 09:43

我来回答

2个回答

热心网友 时间:2024-11-13 21:04

int不能做encode啊,你做encode前要保证你的encode对象是str啊

比如:

x=16
x.encode('utf-8')就会发生你这种错误
你要先
x=str(x)
然后
x.encode('utf-8')

就行了

热心网友 时间:2024-11-13 20:57

运行到rows = cur.fetchall()就报错了呀

声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top