Question 11
Consider the flask code below.
from flask import Flask
app = Flask(__name__)
@app.route("/user/<id>")def get_user(id): return "User Id : " + str(id)
if __name__ == "__main__": app.run(debug=True)Assume that the above flask application is running on http://127.0.0.1:5000 . Which of the following URLs will render “Not Found” error?