12 Booleans
04 Jul 2016- Booleans
- Son un tipus de dades en les quals sols es pot operar
True
orFalse
.
Documentació sobre els operadors booleans
>>> 8 < 12
True
>>> 8 > 12
False
>>> 21.3 > 32.5
False
>>> 8 == 8
True
>>> 8 >= 4
True
>>> 8 <= 4
False
>>> 8 == 8.0
True
>>> x = 8
>>> y = 9
>>> x == y
False
>>> x != y
True
>>> nota = 8
>>> nota >= 5
True
>>> not(nota >= 5)
False
>>> not not(nota >= 5)
True
>>> nota2 = 9
>>> (nota >=5) and (nota2 >=5)
True
>>> nota2 = 3
>>> (nota >=5) and (nota2 >=5)
False
>>> (nota >=5) or (nota2 >=5)
True
>>> nota2=4
>>> (nota >=5) or (nota2 >=5)
True
>>> nota = 3
>>> (nota >=5) or (nota2 >=5)
False