In Flask, the ____ object is used to store data that is accessible from all parts of an application.
- app
- request
- route
- session
In Flask, the session object is used to store data that is accessible across different parts of an application. It allows you to store user-specific data, such as login information or shopping cart contents, across multiple requests.
Loading...
Related Quiz
- How can you integrate a Python back-end with a Single Page Application (SPA) framework like Angular or React?
- In Django, the ____ method is used to handle HTTP GET requests specifically in class-based views.
- In Python, a metaclass is a subclass of _____.
- Which Python module would you use for logging error and debugging messages?
- When using Scikit-learn, what is the initial step to perform before fitting a model to the dataset?