Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Syntax of if-else Statement | Python if-else Statement
Conditional Statements in Python Clone

Glissez pour afficher le menu

book
Syntax of if-else Statement

Let's briefly discuss the syntax of the if-else construct.

  • The syntax of the if statement remains unchanged;

python
  • Write the else keyword. Note that it is case sensitive, so it is not the same as Else so if you use Else you will get an error because it is not correct;

python
  • Furthermore, you don't need to specify a condition when using else since it inherently implies the opposite condition of the if part;

  • Simply use a colon;

  • Then, proceed with code indentation for the instructions executed within the else-block. These instructions are executed if our condition in the if statement evaluates to False.

Practice Time!

Tâche

Swipe to start coding

You have to find the greatest number of three numbers using an if-else statement.

Fill in the blanks.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 2
Nous sommes désolés de vous informer que quelque chose s'est mal passé. Qu'est-il arrivé ?

Demandez à l'IA

expand
ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

book
Syntax of if-else Statement

Let's briefly discuss the syntax of the if-else construct.

  • The syntax of the if statement remains unchanged;

python
  • Write the else keyword. Note that it is case sensitive, so it is not the same as Else so if you use Else you will get an error because it is not correct;

python
  • Furthermore, you don't need to specify a condition when using else since it inherently implies the opposite condition of the if part;

  • Simply use a colon;

  • Then, proceed with code indentation for the instructions executed within the else-block. These instructions are executed if our condition in the if statement evaluates to False.

Practice Time!

Tâche

Swipe to start coding

You have to find the greatest number of three numbers using an if-else statement.

Fill in the blanks.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 2
Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Nous sommes désolés de vous informer que quelque chose s'est mal passé. Qu'est-il arrivé ?
some-alt