Given score, use if/elif/else to assign a letter grade: "A" if score >= 90, "B" if >= 80, "C" if >=
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Given score, use if/elif/else to assign a letter grade: "A" if score >= 90, "B" if >= 80, "C" if >= 70, "D" if >= 60, otherwise "F". Print the grade.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.