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

Contenuti del Corso

Introduction to Python(ihor)

Introduction to Python(ihor)

1. First Acquaintance with Python
2. Variables and Types in Python
3. Conditional Statements in Python
4. Other Data Types in Python
5. Loops in Python
6. Functions in Python

book
if/elif/else Expressions

To check an additional condition after the initial if statement, use elif. This enables multiple conditions to be evaluated sequentially.

python

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

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 3. Capitolo 9
Siamo spiacenti che qualcosa sia andato storto. Cosa è successo?
some-alt