This is a simple GPA calculator implemented in Python. It allows users to calculate their Grade Point Average (GPA) based on their course grades and credit hours.
The GPA calculator takes inputs from the user in the form of course names, grades, and credit hours. It then calculates the GPA using the standard GPA formula. The grades are mapped to their respective grade point values based on a predefined grading scale. The GPA is calculated by summing the grade points for all courses and dividing it by the total credit hours.
- Clone the repository or Fork the repository.
- Navigate to the project directory:
cd gpa-calculator
- Run the
gpa_calculator.py
script:python gpa_calculator.py
- Follow the prompts to enter your course details (name, grade, and credit hours) for each course.
- Once you have entered all the course details, the GPA calculator will display your calculated GPA.
This project is licensed under the MIT License. Please see the LICENSE file for more information.
Enjoy calculating your GPA with ease using this simple GPA calculator!