Question 16
Consider the following Python code and HTML document.
from flask import Flask, render_templateapp = Flask(__name__)
@app.route("/font/size/<int:size>")def font_size(size): internal_css = {} if size < 12: internal_css = {"font-weight": "bold", "font-size": "12px"} else: internal_css = {"font-weight": "normal", "font-size": str(size) + "px"}
return render_template("index.html", internal_css=internal_css)
app.run(debug=True)HTML document: templates/index.html
<!DOCTYPE html><html> <div style="font-size:{{internal_css['font-size']}};font-weight:{{internal_css['font-weight']}};"> IITM BS Degree Program </div></html>Assume that the flask server is running on “http://localhost:5000/”. Which of the following is/are true?