Question: Write a Python script that allows a user to input three exam scores. Display a congratulatory message if the average exam score across all three
Write a Python script that allows a user to input three exam scores. Display a congratulatory message if the average exam score across all three is greater than 95%. Your solution should follow these general steps;
- Obtain the first exam score from the user in the form score/max
- Example: 93/100
- Obtain the second score
- Obtain the third score
- Check that the user provided numbers and compute the average test score
- Display the average
- If the average was greater than 95%, display a congratulatory message
- Example: "Great work! Your average was over 95%!!!!"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
