Question 8
Consider the flask code below.
from flask import Flaskapp = Flask(__name__)
@app.route("/")def get_home(): a = [i for i in range(11)] t = ", ".join(map(str, a)) return t
@app.route("/numbers/<int:n>")def get_numbers(n): a = [i for i in range(n + 1)] t = ", ".join(map(str, a)) return t
if __name__ == "__main__": app.run(debug=True)Assume that the above flask application is running on http://127.0.0.1:5000. Which of the following statements is/are True for the above code snippet?