gpt4 book ai didi

Python 类型错误 : can only concatenate str (not "tuple") to str

转载 作者:行者123 更新时间:2023-12-01 01:21:54 31 4
gpt4 key购买 nike

我正在尝试打印 SQL 输出的输出,如下所示:

dwh_cur.execute("""select count (*) from sales""")
var1 = dwh_cur.fetchone()
text = 'Total Sales is ' + var1

var1 = 100

预期输出:

Total Sales is 100

但我收到错误

TypeError: can only concatenate str (not "tuple") to str

最佳答案

dwh_cur.fetchone() 返回一条记录,该记录表示为 n 个元素的元组,

dwh_cur.execute("""select count (*) from sales""")
var1 = dwh_cur.fetchone()
text = 'Total Sales is {}'.format(var1[0])

可能会起作用,具体取决于查询返回的内容。

关于Python 类型错误 : can only concatenate str (not "tuple") to str,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53741264/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com