Is there any way to print the python dictionary in to a table in HTML. I have a python dictionary and am sending to HTML by using
return render_template(\'i
For python3, no () after result.items
{% for key, value in result.items %} {{ key }} {{ value }} {% endfor %}