Ejemplo 1: ¿Cuál de los siguientes es un booleano en Python?
>>> type(True)
<class 'bool'>
>>> type(true)
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
NameError: name 'true' is not defined
Ejemplo 2: booleano en python
The Python Boolean type is one of Python's built-in data types. It's used to represent the truth value of an expression. For example, the expression 1 <= 2 is True , while the expression 0 == 1 is False .
Ejemplo 3: ejemplo de pitón booleano
#Example I found:
my_boolean = 1
print(bool(my_boolean))
my_boolean = 0
print(bool(my_boolean))
my_boolean = 10
print(bool(my_boolean))
print("Coding" == "fun")
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)