What if you want to do something when the condition is false? Use else: python age = 15 if age >= 18: print("You can vote") else: print("Too young to vote") The else block runs when the if condition is False.
Exactly one of the two blocks will run, never both, never neither. Notice else has no condition. It catches everything that didn't match the if. It's the "otherwise" case. Also notice the colon after else and the indentation of its block.