有沒(méi)有辦法可以將此代碼嵌入 HTML 文件而不是文本?如果這是一個(gè)糟糕的解釋,我很抱歉,但是代碼和圖片應(yīng)該更好地融入我的想法。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>
在 HTML 頁(yè)面中嵌入 HTML 的 Python 輸出
呼啦一陣風(fēng)
2023-07-18 15:09:08