menu = [{'title':'Главная','endpoint':'hello_world'}, {'title':'Задача 1','endpoint':'lesson1'},{'title': 'Задача 2','endpoint':'lesson2'},{'title': 'Задача 3','endpoint':'lesson3'},{'title': 'Задача 4','endpoint':'lesson4'}]
{% for item in menu %}
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="{{ url_for(item.endpoint) }}">{{ item.title }}</a>
</li>
{% endfor %}