With Python, I am trying to get a simple Grade Checker code
With Python, I am trying to get a simple Grade Checker code
This is the following
criteria:
· 100 – 90: A
· 89 – 80: B
· 79 – 70: C
· 69 – 60: D
· 59 and below: F
The sample output would be:
Grade Checker
Enter your grade: 88
You earned a B
Assume the user will enter valid data.
Selection structure needs to be used.