---
title: '|make_list'
description: converts the value to a list of characters.
date: '2025-12-04'
categories:
  - Filter
  - Data Structure
canonical: https://www.djangotemplatetagsandfilters.com/filters/make_list/
doc_link: https://docs.djangoproject.com/en/6.0/ref/templates/builtins/#make-list
---

# |make_list

converts the value to a list of characters.

## Documentation

Converts the value to a list of characters. Non-string values are first converted to strings.

#### Variables

```django
company = 'Webucator'
number = 123456789
```

#### Template

```django
{{ company|make_list }}<br>
{{ 123456789|make_list }}
```

#### Result

```django
['W', 'e', 'b', 'u', 'c', 'a', 't', 'o', 'r']<br>
['1', '2', '3', '4', '5', '6', '7', '8', '9']
```

## Commentary

We cannot think of a single practical use case for this. Can you?
