Lesson 22
Else Statement
What happens otherwise?
split
What If It's Not True?
Use else to handle the "otherwise" case!
IF True
Do this
ELSE (Not True)
Do that instead
if age >= 18: print("You can vote!") else: print("Too young to vote")
Else runs when the if condition is False!