if/elif/else Expressions
To check an additional condition after the initial if
statement, use elif
. This enables multiple conditions to be evaluated sequentially.
if condition_a:
# Do this if `condition_a` is `True`
elif condition_b:
# Do this if `condition_a` is not `True`, but `condition_b` is
else:
# Do this if neither condition is `True`
Sometimes you want your program to handle several possible conditions, not just one. Using if
and elif
, you can check multiple conditions one after the other. Finally, you can use else
to catch any cases that don't match the previous conditions.
123456789101112# Define your age age = 43 # Print a message based on your age if age < 13: print("You are a child.") elif age < 20: print("You are a teenager.") elif age < 65: print("You are an adult.") else: print("You are a senior.")
You can stack multiple elif
blocks as needed. However, keep in mind that using too many elif
blocks may not be the most efficient way to structure your code.
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 1.67
if/elif/else Expressions
Swipe to show menu
To check an additional condition after the initial if
statement, use elif
. This enables multiple conditions to be evaluated sequentially.
if condition_a:
# Do this if `condition_a` is `True`
elif condition_b:
# Do this if `condition_a` is not `True`, but `condition_b` is
else:
# Do this if neither condition is `True`
Sometimes you want your program to handle several possible conditions, not just one. Using if
and elif
, you can check multiple conditions one after the other. Finally, you can use else
to catch any cases that don't match the previous conditions.
123456789101112# Define your age age = 43 # Print a message based on your age if age < 13: print("You are a child.") elif age < 20: print("You are a teenager.") elif age < 65: print("You are an adult.") else: print("You are a senior.")
You can stack multiple elif
blocks as needed. However, keep in mind that using too many elif
blocks may not be the most efficient way to structure your code.
Thanks for your feedback!