Question 4
What will be the output when accessing http://localhost:5000/user/42 in the following Flask app?
from flask import Flaskapp = Flask(__name__)
@app.route('/user/<uid>')def show_user(uid): return f"User ID: {uid * 2}"
app.run(debug=True)