gpt4 book ai didi

python - 在 Python 中搜索对象列表

转载 作者:太空宇宙 更新时间:2023-11-04 08:21:46 25 4
gpt4 key购买 nike

我有一个具有日期属性的 Item 对象列表。我还有一个从数据库中获取的日期。

我想搜索列表,找到所有大于我从数据库返回的日期的列表项。

我的 Items 对象列表中有超过一千个对象,因此我希望尽可能高效。

我认为循环遍历列表中的每个项目并检查它是否大于我从数据库返回的日期并不是执行此操作的最有效方法。

class Item(object):    
def __init__(self, title, link, description, date):
self.title = title
self.link = link
self.description = description
self.date = date

item_list = []
...
#assume I populate the list with a 1,000 Item objects

filtered_list = []
for it in item_list:
if date_from_db > it.date:
filtered_list.append(it)

最佳答案

列表理解是在数据库之外执行此操作的一种相当有效的方法:

[it for it in item_list if date_from_db > it.date]

否则,您可以使用内置的 filter:

filter(lambda it: it if date_from_db > it.date, item_list)

关于python - 在 Python 中搜索对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4161629/

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