Ibuprofeno.py馃拪| #112: Explica este c贸digo Python

Cristian Fernando - May 28 - - Dev Community

Explica este c贸digo Python

Dificultad: Intermedio

print(bool(-100), bool(100))
Enter fullscreen mode Exit fullscreen mode

馃憠 A. True, True
馃憠 B. True, False
馃憠 C. False, True
馃憠 D. False, False


Respuesta:

馃憠 A. True, True

En Python los tipos de datos booleanos descienden del tipo de datos de los n煤meros. Entonces El posible representar tanto True como False como valores num茅ricos, donde: True equivale a 1 y False equivale a 0.

Ahora bien, tenemos una peculiaridad con los n煤meros que sean diferentes de 1 y 0.

Todos los numeros enteros que sean diferentes de 0 ser谩n considerados como True (incluidos los valores negativos), solo el valor 0 equivale a False.

En nuestro ejemplo -100 infiere a True por mas que sea negativo porque es diferente de 0 y 100 tambi茅n infiere a True por las mismas razones.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player