Create a program that takes a numeric test score and provides detailed feedback.
Enter your test score: 82
Your grade: B
Good job! You're doing well.
You need 8 more points for an A.
Enter your test score: 100
Your grade: A
Excellent work!
Perfect Score! Outstanding!
Enter your test score: 58
Your grade: F
Don't give up! See me for extra help.
You need 2 more points for a D.
elif
statements for each grade rangepoints_needed
by subtracting current score from next threshold# Get the score
score = int(input("Enter your test score: "))
# Determine grade and feedback
if score >= 90:
grade = "A"
message = "Excellent work!"
print(f"Your score: {score}/100")
print(f"Your grade: {grade}")
print(message)