在 HTML 页面中嵌入 HTML 的 Python 输出

有没有办法可以将此代码嵌入 HTML 文件而不是文本?如果这是一个糟糕的解释,我很抱歉,但是代码和图片应该更好地融入我的想法。


Python:


table = [best_words[0:5]]

p = (tabulate(table, tablefmt='html'))

end = time.time()

final_time = '{:.2f}'.format((end-start))

return render_template('index.html', prediction=('{}'.format(p)), final_time=final_time)

Python 的输出:


<table>

<tbody>

<tr><td>the</td><td>a</td><td>,</td><td>-</td><td>that</td></tr>

</tbody>

</table>

HTML 文件:


<h5>Genrated text:</h5>

</div>

<table> <tbody>{{ prediction }} </tbody> </table></div></div> </header>

http://img2.mukewang.com/64b63ad300017ea406260408.jpg

呼啦一阵风
浏览 135回答 2
2回答

至尊宝的传说

据此<table> <tbody>{{ prediction|safe }} </tbody> </table></div></div> </header>我认为应该这样做

拉风的咖菲猫

使用代码标签<code> --&nbsp;Something&nbsp;here </code>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python