Presentation 1
Presentation 1
0: "))
if score < 0.0 or score > 1.0:
print("Error: Score is out of range.")
elif score >= 0.9:
print("Grade: A")
elif score >= 0.8:
print("Grade: B")
elif score >= 0.7:
print("Grade: C")
elif score >= 0.6:
print("Grade: D")
else:
print("Grade: F")