标签: python tuples
TypeError:/:'tuple'和'tuple'
我遇到上述错误,而我使用查询“从表中选择max(rowid)”获取记录 并将其分配给变量,而执行/操作则抛出上面的消息。 如何解决这个问题。
答案 0 :(得分:4)
Sql查询select max(rowid)将返回像records=(1000,)
select max(rowid)
records=(1000,)
您可能需要执行numerator / records[0]
numerator / records[0]