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