변수에 원하는 데이터를 넣고, render_template('index.html', 데이터이름=데이터)
방식으로 코드를 추가해주시면 됩니다.
그러면 HTML에서 정해둔 데이터 이름(지금은 data)로 Python 서버의 데이터를 사용할 수 있어요.
@app.route('/')
def home():
name = "남궁철"
return render_template('index.html', data=name)
<body>
<h1>안녕, {{ data }}</h1>
</body>