gpt4 book ai didi

python - 如何获取PyQt5中QlistWidget中存在的所有项目

转载 作者:行者123 更新时间:2023-12-01 02:00:52 27 4
gpt4 key购买 nike

我有一个功能,显示选定目录中存在的文件列表,然后用户输入搜索的单词,程序在后台读取这些文件以找到匹配的单词,最后它覆盖现有列表仅显示包含匹配单词的文件。

问题在于while循环系统显示此错误:

while index < len(self.listWidgetPDFlist.count()):

builtins.TypeError: object of type 'int' has no len()

代码:

def listFiles(self):

readedFileList = []
index = 0
while index < len(self.listWidgetPDFlist.count()):
readedFileList.append(self.listWidgetPDFlist.item(index))
print(readedFileList)

try:
for file in readedFileList:

with open(file) as lstf:
filesReaded = lstf.read()
print(filesReaded)
return(filesReaded)

except Exception as e:
print("the selected file is not readble because : {0}".format(e))

最佳答案

count() 返回项目数,因此它是一个整数,函数 len() 仅适用于可迭代对象,不适用于整数,因此您会收到该错误,再加上这是没有必要的。您必须执行以下操作:

def listFiles(self):
readedFileList = [self.listWidgetPDFlist.item(i).text() for i in range(self.listWidgetPDFlist.count())]
try:
for file in readedFileList:
with open(file) as lstf:
filesReaded = lstf.read()
print(filesReaded)
# return(filesReaded)

except Exception as e:
print("the selected file is not readble because : {0}".format(e))

注意:不要使用 return,循环将在第一次迭代中完成。

关于python - 如何获取PyQt5中QlistWidget中存在的所有项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49645898/

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