I´m doing a flask app and I´m having a pandas df and iterate through it with a jinja2 loop. I get all the values of my df printed on my page, but i was wondering how i can get only one value displayed as i couldn´t find anything on the web. I´m new to stackoverflow so please tell me if you need more information. thanks in advance.
jinja2 code:
{% for row in dataframe.iterrows() %}
{{row[0]}}: {{row[1][0]}}
{% endfor %}