From 4bc1fa390a87c1ac43f78addc3914d4abcdf1fb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Ot=C3=A1vio?= Date: Wed, 26 Oct 2022 07:56:03 -0300 Subject: [PATCH] =?UTF-8?q?Operador=20l=C3=B3gico=20"not"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aula23.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 aula23.py diff --git a/aula23.py b/aula23.py new file mode 100644 index 0000000..79681c6 --- /dev/null +++ b/aula23.py @@ -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