This repository contains simple and well-commented Python programs for learning basic mathematical operations. It includes addition challenges, multiplication tables, and division with remainder, designed especially for kids, school students, and beginners who are starting their journey with Python programming and logic building.
-
addition-challenge.py
→ Adds two 2-digit numbers and prints the result with a smiley 😊 -
multiplication-table.py
→ Prints multiplication table (1–12) up to 10 -
division-reminder.py
→ Performs division and shows quotient and remainder
python --version
python addition-challenge.py
python multiplication-table.py
python division-reminder.pypython3 --version
python3 addition-challenge.py
python3 multiplication-table.py
python3 division-reminder.py