Question 13
Consider the flask code below.
from flask import Flask
app = Flask(__name__)
@app.route("/employee/<id>")def get_employee(id): return "Employee 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?