Syntax of if-else Statement
Let's briefly discuss the syntax of the if-else construct.
- The syntax of the
ifstatement remains unchanged;
if condition:
action
- Write the
elsekeyword. 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;
if True condition:
action
else: # if False condition
other action
- Furthermore, you don't need to specify a condition when using
elsesince 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 theifstatement evaluates toFalse.
Practice Time!
Oppgave
Swipe to start coding
You have to find the greatest number of three numbers using an if-else statement.
Fill in the blanks.
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 2
single
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Awesome!
Completion rate improved to 5.88
Syntax of if-else Statement
Sveip for å vise menyen
Let's briefly discuss the syntax of the if-else construct.
- The syntax of the
ifstatement remains unchanged;
if condition:
action
- Write the
elsekeyword. 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;
if True condition:
action
else: # if False condition
other action
- Furthermore, you don't need to specify a condition when using
elsesince 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 theifstatement evaluates toFalse.
Practice Time!
Oppgave
Swipe to start coding
You have to find the greatest number of three numbers using an if-else statement.
Fill in the blanks.
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 2
single