Python - Conditional Statements
Given this code, what will be printed if score = 70?
if score > 80:
print("High")
elif score > 60:
print("Medium")
elif score > 50:
print("Low")
else:
print("Fail")Given this code, what will be printed if score = 70?
if score > 80:
print("High")
elif score > 60:
print("Medium")
elif score > 50:
print("Low")
else:
print("Fail")15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions