A curated collection of Python programs, exercises, and mini-projects developed during my Python course. This repository showcases coding practice, problem-solving solutions, and practical projects to strengthen Python programming skills.
#Python Installation Guide
Follow these steps to install Python on your system:
1️⃣ Windows
1.Go to the Python Official Website
2.Download the latest Python version (e.g., Python 3.12.x).
3.Run the installer.
4.Check: “Add Python 3.x to PATH.”
5.Click Install Now.
6.Open Command Prompt and verify installation:
python --version
2️⃣ Mac (macOS)
1.Download the macOS installer from the Python Official Website.
2.Run the .pkg file.
3.Open Terminal and verify installation:
python3 --version
Alternative (Homebrew):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install python
python3 --version
3️⃣ Linux (Ubuntu/Debian)
1.Update package list:
sudo apt update
2.Install Python:
sudo apt install python3
python3 --version
3.Install pip (Python package manager):
sudo apt install python3-pip
pip3 --version