Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Oppiskele if/elif/else Expressions | Conditional Statements in Python
Introduction to Python(ihor)

bookif/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.")
copy

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.

question mark

What is the purpose of using the elif statement in Python?

Select the correct answer

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 3. Luku 9

Kysy tekoälyä

expand

Kysy tekoälyä

ChatGPT

Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme

Awesome!

Completion rate improved to 1.67

bookif/elif/else Expressions

Pyyhkäise näyttääksesi valikon

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.")
copy

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.

question mark

What is the purpose of using the elif statement in Python?

Select the correct answer

Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 3. Luku 9
some-alt