成功解决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格式即可!