当前位置:  开发笔记 > 编程语言 > 正文

如何在Python中迭代cur.fetchall()

如何解决《如何在Python中迭代cur.fetchall()》经验,为你挑选了0个好方法。

我正在使用Python 3.4中的数据库连接.我的数据库中有两列.

下面是查询,它以两种显示的格式QUERY为我提供了所有数据:

cur.execute(""" select * from filehash """)
data=cur.fetchall()
print(data)

OUTPUT:

[('F:\\test1.py', '12345abc'), ('F:\\test2.py', 'avcr123')]

要遍历此输出,我的代码如下所示

cur.execute(""" select * from filehash """)
data=cur.fetchall()

i=0
j=1

for i,row in data:
    print(row[i])
    print(row[j])
    i=i+1

这给了我以下错误

print(row[i])
TypeError: string indices must be integers

让我知道我们如何处理个人价值观 fetchall()

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有