if-else Statements

How do you write an if-else statement?

An if-else statement has an if statement that runs if the condition is True andan else clause if the condition is False.

How do you write a series of if-elif-else statements?

An if-elif-else block has an if statement, a series of test conditions if the first test fails, and an else block that runs if all tests fail.