gpt4 book ai didi

python : IndexError: tuple index out of range

转载 作者:太空狗 更新时间:2023-10-29 22:26:14 25 4
gpt4 key购买 nike

在python中我有这段代码

if record[0][1]:

问题是..当mysql没有返回任何东西时..

record[0][1]

没有数据..

此 python 代码失败:

if record[0][1]:
IndexError: tuple index out of range

record[0][1]

没有值(value)。或数据..(从mysql传入的东西)

最佳答案

try:
if record[0][1]:
# Do stuff
except IndexError:
pass

关于 python : IndexError: tuple index out of range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25169563/

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