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