We will be creating a PostgreSQL database and connecting and accessing it using python.
PostgreSQL, Python3
pip install psycopg2
1. search for **psql** in the search bar in windows, i.e simply open the psql terminal
2. CREATE DATABASE <Database_name>
3. \c <Database_name>
4. Use python to do the rest of the things.