Explain the Django session
Django uses sessions to maintain the state between the website and a particular browser. The session framework is capable of anonymous sessions and stores and retrieves data on a per-site-visitor basis. All information is stored on the server side, and Django supports sending and receiving cookies to maintain the session. While cookies store the data of the session ID, they do not store the actual data itself, which is stored on the server side.
