Python - Conditional Statements
Find the error in this code:
score = 75
if score >= 90
print("Excellent")
elif score >= 60:
print("Pass")
else:
print("Fail")