gpt4 book ai didi

Python字典到html表

转载 作者:IT老高 更新时间:2023-10-28 20:58:58 26 4
gpt4 key购买 nike

有没有办法将 python 字典打印到 HTML 表格中。我有一个 python 字典,正在使用

发送到 HTML
return render_template('index.html',result=result)

现在我需要将结果字典中的元素作为表格打印到 HTML 中。

最佳答案

Flask 使用 Jinja 作为模板框架。您可以在模板 (html) 中执行以下操作

Jinja 也可以单独用作标记渲染器。

Python3/Jinja2

<table>
<thead>
<tr>
<th>Key</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{% for key, value in result.items() %}
<tr>
<td> {{ key }} </td>
<td> {{ value }} </td>
</tr>
{% endfor %}
</tbody>
</table>

Python2/神社

<table>
{% for key, value in result.iteritems() %}
<tr>
<th> {{ key }} </th>
<td> {{ value }} </td>
</tr>
{% endfor %}
</table>

关于Python字典到html表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14652325/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com