Question 30
Consider the following code snippet.
@app.route('/student/<student_id>')def profile(student_id): # CODE BLOCK HEREAssume the database has a "student" table which has a TEXT column "student_id". If we want the server to return a 404 status code when a user goes to the route '/student/<student_id>' with a student_id that does not exist in the database, which of the following lines would give us the desired output?