gpt4 book ai didi

python - TypeError:类型为 'NoneType' 的对象没有 len() python

转载 作者:行者123 更新时间:2023-12-05 08:57:36 25 4
gpt4 key购买 nike

我一直收到这个错误

TypeError: object of type 'NoneType' has no len()

代码如下:

def main():
myList = [ ]
myList = read_csv()
## myList = showList(myList)
searchList = searchQueryForm(myList)
if len(searchList) == 0:
print("I have nothing to print")
else:
showList(searchList)

最佳答案

searchQueryForm 如果找不到任何内容,显然会返回 None。由于您不能将 len 应用于 None,因此您必须明确检查:

if searchList is None or len(searchList) == 0:

关于python - TypeError:类型为 'NoneType' 的对象没有 len() python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30320827/

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