如果您看下面的代码,您将完全理解我想要的。即使我只得到符合此条件的汽车数量也足够。或者,如果我们可以从符合此条件的汽车中创建一个新的循环,那就太好了。
{% for car in cars %}
{% if car.color == 'white' %}
create new for loop from white cars
or
give me the numbers of white cars
{% endif %}
{% endfor %}