Question 2
Consider the following code:
app.py
from flask import Flaskapp = Flask(__name__)
@app.route("/")def port(): return "This is the port question."
if __name__ == "__main__": app.run(port=5008)You are running a Flask web application locally using the command: python app.py. On which URL will the application be accessible on the browser?