Operador lógico "not"

This commit is contained in:
Luiz Otávio
2022-10-26 07:56:03 -03:00
parent c56e0f1613
commit 4bc1fa390a

7
aula23.py Normal file
View File

@@ -0,0 +1,7 @@
# Operador lógico "not"
# Usado para inverter expressões
# not True = False
# not False = True
# senha = input('Senha: ')
print(not True) # False
print(not False) # True