This is a website for Python Learning aimed at school students and beginners. It contains chapter wise details and exercises as well as python related content from top universities #First step is to unzip the folder and extract all files
#Second step is to right click within the new unzipped folder and open windows powershell
#Third step is to create python environment with command: python -m venv .venv
#Fouth step is to activate scripts with command: ..venv\Scripts\activate.ps1
#Fifth step is to install required python libraries with command: pip install -r requirements.txt
#Final step is to run the python app through command: uvicorn app.main:app --reload --port 8000