I have a form, that accepts a number. On submission of the form, this number is redirected to another html page from the django views.py. Here, how do I iterate over the number that I have received? When I try with the below, it says 'int' object is not iterable
{% for i in N %}
<p>{{i}}</p>
{% endfor %}
Note: N here is the number received from the form.