Conditional Logic
If-statements allow your code to make decisions. The elif (else if) and else clauses provide alternative paths based on different conditions.
score = 85if score >= 90:print("Excellent!")elif score >= 70:print("Good job!")else:print("Keep practicing!")