Conditional Statement�
What is Conditional Statement?
if..else statement
When to apply CS ?
Types of Conditional Statement
Only If
temperature = 25� if temperature > 20:� print("It's a warm day.")� � �
2. If Else
age = 18� if age >= 18:� print("You are eligible to vote.")� else:� print("You are not eligible to vote.")
If Elif… Else
temperature = 15� if temperature > 30:� print("It's a hot day.")� elif temperature > 20:� print("It's a warm day.")� elif temperature > 10:� print("It's a cool day.")� else:� print("It's a cold day.")
Nested If Else
if-else statement.��Example:
temperature = 25� is_sunny = True� if temperature > 20:� if is_sunny:� print("It's a warm and sunny day.")� else:� print("It's a warm but cloudy day.")� else:� if is_sunny:� print("It's a cold but sunny day.")� else:� print("It's a cold and cloudy day.")
Shorthand If Else