Python - Conditional Statements
What will be the output of this code?
score = 75
if score >= 90:
print("Excellent")
elif score >= 60:
print("Good")
else:
print("Try again")