Grading_Rubric_Python_Grade_Categorization
Grading_Rubric_Python_Grade_Categorization
**Total: 5 Points**
Examples of Scoring
Score: 5/5
Conditional Logic: 1.5 points (Conditions are correct but fail without conversion).
Output: 0.5 points (Output is conceptually correct but won’t work as expected due to
conversion error).
Score: 3/5
Score: 0.5/5
Example 4: Partial Validity, No Invalid Input Check
grade = int(input("Enter the grade: "))
if grade >= 90:
print("A")
elif grade >= 80:
print("B")
elif grade >= 70:
print("C")
else:
print("Needs Improvement")
Score: 4/5