Basics - Control Statement - Exercises Solutions

Control Statement Exercise 02: Grade Classifier

# Write a Python program that classifies a student's grade based on the following rules:
# Grade ≥ 90: Excellent
# Grade 80-89: Very Good
# Grade 70-79: Good
# Grade 60-69: Satisfactory
# Grade < 60: Fail

user_grade = float(input('Enter grade: '))
output = ''

if user_grade >= 90:
    output = 'Excellent'
elif user_grade >= 80:
    output = 'Very Good'
elif user_grade >= 70:
    output = 'Good'
elif user_grade >= 60:
    output = 'Satisfactory'
else:
    output = 'Fail'

print(f'Output: {output}')

Leave a Reply

Your email address will not be published. Required fields are marked *