Table of contents
1. What are conditional statements?2. Boolean values in Python
3. Truthy and falsy values in Python
4. The if statement
5. The if-else statement
6. The if-elif-else statement
7. Combining conditions
7.1 What is and?
7.2 Example 1: using and
7.3 What is or?
7.4 Example 2: using or
7.5 Difference between and and or
7.6 Example: comparing and and or
8. Using the ternary operator