Convert a numeric score into a letter grade with clear thresholds.
Constraints
Example
>>> grade_from_score(95) 'A' >>> grade_from_score(84) 'B' >>> grade_from_score(60) 'D' >>> grade_from_score(0) 'F'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints