Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara And, Or, Not Operators | True or False?
Data Types in Python

Scorri per mostrare il menu

book
And, Or, Not Operators

In real life, almost everyone expresses their thoughts using phrases like "Yes or No", "Definitely Not", "Yes, yes and yes!". Python language permits you to do almost the same, but it uses more formal phrases based on the statements and, or, and not.

X and Y can be any logical statement (True or False):

StatementSyntaxPurpose
andX and YReturns True only if X and Y are both True
orX or YReturns True in all cases, except if X and Y are both False
notnot XIf X is True, it changes it to False, and vice versa

Let's look at the table below to understand the logic of each operator:

XYX or YX and Ynot X
TrueTrueTrueTrueFalse
TrueFalseTrueFalseFalse
FalseTrueTrueFalseTrue
FalseFalseFalseFalseTrue
Compito

Swipe to start coding

It's time for some tricky tasks!

Here, you should replace___ with a True or False statement to make:

  1. The statement1 variable equal to True.
  2. The statement2 variable equal to False.

Soluzione

Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 2. Capitolo 3
Siamo spiacenti che qualcosa sia andato storto. Cosa è successo?

Chieda ad AI

expand
ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

book
And, Or, Not Operators

In real life, almost everyone expresses their thoughts using phrases like "Yes or No", "Definitely Not", "Yes, yes and yes!". Python language permits you to do almost the same, but it uses more formal phrases based on the statements and, or, and not.

X and Y can be any logical statement (True or False):

StatementSyntaxPurpose
andX and YReturns True only if X and Y are both True
orX or YReturns True in all cases, except if X and Y are both False
notnot XIf X is True, it changes it to False, and vice versa

Let's look at the table below to understand the logic of each operator:

XYX or YX and Ynot X
TrueTrueTrueTrueFalse
TrueFalseTrueFalseFalse
FalseTrueTrueFalseTrue
FalseFalseFalseFalseTrue
Compito

Swipe to start coding

It's time for some tricky tasks!

Here, you should replace___ with a True or False statement to make:

  1. The statement1 variable equal to True.
  2. The statement2 variable equal to False.

Soluzione

Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 2. Capitolo 3
Switch to desktopCambia al desktop per esercitarti nel mondo realeContinua da dove ti trovi utilizzando una delle opzioni seguenti
Siamo spiacenti che qualcosa sia andato storto. Cosa è successo?
some-alt