其他分享
首页 > 其他分享> > 成功解决TypeError: tuple indices must be integers or slices, not str

成功解决TypeError: tuple indices must be integers or slices, not str

作者:互联网

成功解决TypeError: tuple indices must be integers or slices, not str

 

目录

解决问题

解决思路

解决方法


 

 

 

解决问题

TypeError: tuple indices must be integers or slices, not str

for row in cur:  #每行规范输出
     print("name=%s, AGE=%d" % (row['name'], row['age']))

 

 

解决思路

类型错误:元组索引必须是整数或切片,而不是字符串。

 

 

 

解决方法

可知cur此时是个tuple或者其他空列表等,而不是dict,只需要将其转为dict格式即可!

 

 

 

 

 

标签:integers,TypeError,slices,tuple,must,row
来源: https://blog.51cto.com/u_14217737/2908139