gpt4 book ai didi

python - 不在 Python 中过滤

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

我有一个 list

customers=Customers.objects.filter(limit=1)

level1=customers.filter(status=1)

level2=customers.filter(status=2)

我想填充第三个列表,该列表必须包含 customers 但不在 level1level2 中的所有客户的名称/p>

我试过这么多

returned=customers.filter(~level1) 

最佳答案

您可以使用 exclude() :

Customers.objects.exclude(status__in=[1,2])

Customers.objects.filter(whatever=whatever).exclude(status__in=[1,2])

关于python - 不在 Python 中过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17291768/

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