Sort the code snippets to get the correct program.
Intro to templates and rendering
Template of the templates
Report a typo
Put the items in the correct order
app = Flask('main')
app.run()
@app.route('/')
def main_view():
return render_template('main.html')
def main_view():
return render_template('main.html')
from flask import Flask, render_template
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.