Python - Conditional Statements
What will be the output of this code?
score = 75
if score >= 90:
print("A")
elif score >= 80:
print("B")
elif score >= 70:
print("C")
else:
print("F")What will be the output of this code?
score = 75
if score >= 90:
print("A")
elif score >= 80:
print("B")
elif score >= 70:
print("C")
else:
print("F")15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions