Python Mini Projects Collection
This repository contains a collection of beginner-friendly Python projects built to practice core programming concepts such as logic building, data handling, and problem-solving. Projects Included:- 1):Student Grade System This project calculates grades based on student marks. Example: Above 90->A+ Above 80->A Above 70->B+ Above 60->B Above 50->c Below 40->"Fail" else: Withheld(Result is Pending).
2):Simple Mathematical Calculator
A basic command-line calculator built using Python that performs fundamental arithmetic operations.
Description:- This project is a simple calculator that allows users to perform basic mathematical operations such as addition, subtraction, multiplication, and division. It is designed for beginners to understand Python fundamentals like user input, conditional statements, and functions. Features:-
- Addition
- Subtraction
- Multiplication / Division User-friendly command-line interface Error handling (e.g., division by zero). Helps in understanding conditions and real-world logic building.