Question 2
Consider the following Flask code snippet.
from flask import Flask, request
app = Flask(__name__)@app.route('/greet/<name>')def greet(name): if name: return f'<h1>Hi, Mr/Ms/ {name} welcome to flask</h1>' else: return f'<h1>Hi, Mr/Ms/ <Unknown> welcome to flask</h1>'
app.run(debug=True)If the application is running on a local server for the URL: https://127.0.0.1:5000, what will the browser render for the URL, http://127.0.0.1:5000/greet/?