📖 Definition: Conditional statements in Python are used to make decisions in a program. They allow the program to execute certain blocks of code only when specific conditions are true. 🔑 Types of Conditional Statements: if statement if...else statement if...elif...else statement Nested if statements