Lesson 23
Elif Statement
Multiple conditions!
paths
More Than Two Choices!
elif = "else if" - check more conditions!
Grade Example:
90+ = A80+ = B70+ = Celse = F
if score >= 90: print("A") elif score >= 80: print("B") elif score >= 70: print("C") else: print("F")
elif lets you check many conditions in order!