Flask uses the @app.route() decorator to associate a function with a specific ________.

  • Framework
  • Module
  • Template
  • URL Endpoint
Flask uses the @app.route() decorator to associate a function with a specific "URL Endpoint." When a client makes a request to the specified URL, the associated function is executed, allowing you to define routes and their corresponding actions in Flask applications.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *