Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Priorities | ¿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
Priorities

Hi there! It is time to train your logical skills. Good luck!🤔

Programming-wise, it is vitally important to be good at prioritizing logical statements, like and and or. In the previous section, you were working with math operations, especially with + and *. I can guess that you remember from school that * has a greater importance than +; therefore, the same applies to and and or.

Note

and is multiplication for boolean statements, and or is addition; hence, and has more prominence.

Let's examine an example and make a guess about the result! If you're worried about making an error, feel free to check the hints in this chapter and refer to the table. Keep in mind that you should perform the action inside the brackets first!

12
statement = ((True or True) and False) or True print(statement)
copy

Let's break down this statement and look at each iteration to avoid any misunderstanding:

  1. ((True or True) and False) or True;
  2. (True and False) or True;
  3. False or True;
  4. True.

Note

In each iteration, we simplify the most prioritized part of this expression and replace it with its result. For example, the expression (True or True) becomes True.

Tarea
test

Swipe to begin your solution

Replace the ___ parts of code with True or False to make all variables equal True.

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 7
toggle bottom row

book
Priorities

Hi there! It is time to train your logical skills. Good luck!🤔

Programming-wise, it is vitally important to be good at prioritizing logical statements, like and and or. In the previous section, you were working with math operations, especially with + and *. I can guess that you remember from school that * has a greater importance than +; therefore, the same applies to and and or.

Note

and is multiplication for boolean statements, and or is addition; hence, and has more prominence.

Let's examine an example and make a guess about the result! If you're worried about making an error, feel free to check the hints in this chapter and refer to the table. Keep in mind that you should perform the action inside the brackets first!

12
statement = ((True or True) and False) or True print(statement)
copy

Let's break down this statement and look at each iteration to avoid any misunderstanding:

  1. ((True or True) and False) or True;
  2. (True and False) or True;
  3. False or True;
  4. True.

Note

In each iteration, we simplify the most prioritized part of this expression and replace it with its result. For example, the expression (True or True) becomes True.

Tarea
test

Swipe to begin your solution

Replace the ___ parts of code with True or False to make all variables equal True.

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