-
Notifications
You must be signed in to change notification settings - Fork 0
/
tipo_booleano.py
60 lines (42 loc) · 977 Bytes
/
tipo_booleano.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Tipo Booleano
Álgebra Booleana, criada por George Boole
2 constante, Verdadeiro ou Falso
True -> Verdadeiro
Falase -> Falso
Errado:
true, false
Certo:
True, False
"""
ativo = False
print(ativo)
"""
Operações básicas:
"""
# Negação (not):
"""
Fazendo a negação, se o valor booleano for verdadeiro, o resultado será falso,
se for falso o resultado será verdadeiro. Ou seja, sempre contrário.
"""
print(not ativo)
# Ou (or)
"""
É uma operação binária, ou seja, depende de dois valores. Ou um ou outro deve ser verdadeiro.
True or True -> True
True or False -> True
False or True -> True
False or False -> False
"""
not ativo
logado = False
print(ativo or logado)
# E (and):
"""
Também é uma operação binária, ou seja, depende de dois valores.
Ambos valores devem ser verdadeiro.
True and True -> True
True and False -> False
False and True -> False
False and False -> False
"""