Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende And, Or, Not Operators | ¿Verdadero o Falso?
Tipos de Datos en Python
course content

Contenido del Curso

Tipos de Datos en Python

Tipos de Datos en Python

1. Familiarizándonos con los Números en Python
2. ¿Verdadero o Falso?
3. Strings
4. Reuniendo Todos los Temas

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
Tarea
test

Swipe to begin your solution

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.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 3
toggle bottom row

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
Tarea
test

Swipe to begin your solution

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.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 3
Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
We're sorry to hear that something went wrong. What happened?
some-alt