본문 바로가기
파이썬

파이썬 HTML 페이지에 HTML 인 Python 출력 포함

by º기록 2020. 9. 12.
반응형

이 코드를 텍스트가 아닌 HTML 파일에 포함 할 수있는 방법이 있습니까? 그것이 끔찍한 설명이라면 미안하지만 코드와 그림은 내 생각의 맥락에 더 잘 맞아야합니다.

파이썬 :

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>


 

해결 방법

 


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

해야 할 것 같아요

 

참조 페이지 https://stackoverflow.com/questions/63760016

 

 

반응형

댓글