Generate a number sequence: range

The range template function generates a sequence of numbers. It works just like Python’s built-in range() function. You can call it with only a stop value to get numbers from 0 up to (but not including) that value, or provide start, stop, and step values for full control over the sequence.

This is one of the most commonly used functions in Home Assistant templates, especially when you need to loop a specific number of times or generate a series of numbered values. For example, you might want to check a set of numbered entities, repeat an action a certain number of times, or build a list of values at regular intervals. Since range produces values lazily, you may need to pipe it through | list to see the full output.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

As a function
{{ range(5) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[0, 1, 2, 3, 4]

Function signature

The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).

Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.

range(
    stop: int,
) -> generator[int]

range(
    start: int,
    stop: int,
    step: int = 1,
) -> generator[int]

Function parameters

The following parameters can be provided to this function.

start integer (Optional, default: 0)

The starting number of the sequence. Defaults to 0 when only a stop value is given.

stop integer Required

The end of the sequence. The stop value is not included in the output.

step integer (Optional, default: 1)

The increment between each number in the sequence. Defaults to 1. Can be negative to count downward.

Specifying start and stop

Generate numbers starting from a value other than 0.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Numbers 1 through 5
{{ range(1, 6) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[1, 2, 3, 4, 5]

Using a step value

Generate every other number or count in custom increments.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Even numbers under 10
{{ range(0, 10, 2) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[0, 2, 4, 6, 8]

Counting downward

Use a negative step to count backward.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Countdown
{{ range(5, 0, -1) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[5, 4, 3, 2, 1]

Good to know

  • The stop value is exclusive, so range(1, 5) produces 1, 2, 3, 4.
  • Add | list to materialize the range for length checks or printing. A generator cannot be reused.
  • A negative step is required to count down. range(5, 0) with the default step returns an empty sequence.

Try it yourself

Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].

More examples

Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.

Check a set of numbered entities

Loop through a series of numbered sensorsSensors return information about a thing, for instance the level of water in a tank. [Learn more] to find which are active.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{% for i in range(1, 5) %}
  {% set entity = "binary_sensor.zone_" ~ i %}
  {% if is_state(entity, "on") %}
    Zone {{ i }} is active
  {% endif %}
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Zone 2 is active
Zone 4 is active

Count open windows

Use range with a namespace to count how many numbered window sensors are open.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{% set ns = namespace(count=0) %}
{% for i in range(1, 7) %}
  {% if is_state("binary_sensor.window_" ~ i, "on") %}
    {% set ns.count = ns.count + 1 %}
  {% endif %}
{% endfor %}
{{ ns.count }} windows open
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
2 windows open

Build a percentage bar

Create a text-based progress indicator from a sensor value.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{% set level = states("sensor.battery_level") | int(0) %}
{% set filled = (level / 10) | round(0) | int %}
[
{%- for i in range(10) -%}
  {% if i < filled %}#{% else %}-{% endif %}
{%- endfor -%}
] {{ level }}%
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
[######----] 60%

Still stuck?

The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.

Tip

AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.

Related template functions

These functions work well alongside this one: