# Loops in Jinja

In a traditional for loop, you iterate through a sequence of values and execute specific instructions. Here’s an example of populating a list from 0 to 8 using a for loop:

```django
{% set mylist = [] %}
{%- for item in range(0,9) -%}
    {% do mylist.append(item) %}
{% endfor %}
{{ mylist }}
```

In this snippet, the loop iterates through numbers from 0 to 8, appending each value to the `mylist` variable, which is then displayed.

### **List comprehension: A concise alternative**

List comprehension provides a more concise way to loop through elements and construct lists. It condenses the for loop into a single line, making your code more readable. Here’s how the same task is accomplished using list comprehension:

```django
{{ 
    [
        item for item in range(0,9)
    ]
 }}
```

This one-liner creates a list containing numbers from 0 to 8, simplifying the process and enhancing code readability.

List comprehension can also be used for appending values directly to a list, eliminating the need for separate append statements. Here’s an example of appending a list using list comprehension:

```django
{%- set mylist = [] -%}
{%- do mylist.append(
    [
        item for item in range(0,9)
    ]
) -%}
{{- mylist -}}
```

In this code, list comprehension constructs the list directly within the `append()` statement, making the process more compact and efficient.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rewst.help/documentation/jinja/common-jinja-examples/loops-in-jinja.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
