Question 1
Consider the following flask application and select the correct option if the application is running locally on http://127.0.0.1:5000.
from flask import Flask
app = Flask(__name__)
@app.route('/work')@app.route('/home')def my_task(): return "<h1>Hello! Reporting for my task</h1>"
app.run()