OPERADORES LÓGICOS E ESTRUTURAS DE DECISÕES
Por: Lucas Crespan • 13/12/2018 • Resenha • 257 Palavras (2 Páginas) • 138 Visualizações
Aula 3 - OPERADORES LÓGICOS E ESTRUTURAS DE DECISÕES
#TIPO DE DADP BOOLEAN, DADO QUE É VERDADEIRO OU FALSO
var_verdade = True
var_falso = False
print(type(var_falso), type(var_verdade))
#Operadores de comparação ( ==, >, <, >=, <=, !=,), (and, or).
a = 1
b = 2
if 1 > 2 and 'laranja' == 'melancia':
print('if deu certo')
else:
print('if nao deu certo')
if ((a>b) and ('laranja' == 'melancia')) or a==a:
print('if deu certo')
else:
print('if nao deu certo')
TERMINAL [----------------------------------------------]
"C:\Users\LUCASCRESPANRIBEIRO\Documents\Projetos Python\pythonbasico\venv\Scripts\python.exe" "C:/Users/LUCASCRESPANRIBEIRO/Documents/Projetos Python/pythonbasico/Aula3-OPERADORES-LOGICOS.py"
<class 'bool'> <class 'bool'>
if nao deu certo
if deu certo
Process finished with exit code 0
[-------------------------------------------------------]
print('opcoes:\n1 = Escreve Lucas\n2 = Escreve isabelly\n3 = Escreve Daciolo\n')
opcao = input ('Escolha uma opcao: ')
#elif = se nao se, usa-se para q o programa nao execute a proxima linha se a opcao for True
if opcao == '1':
print('Lucas')
elif opcao == '2':
print('Isabelly')
elif opcao == '3':
print('Daciolo')
else:
print('opcao invalida')
TERMINAL [----------------------------------------------]
"C:\Users\LUCASCRESPANRIBEIRO\Documents\Projetos Python\pythonbasico\venv\Scripts\python.exe" "C:/Users/LUCASCRESPANRIBEIRO/Documents/Projetos Python/pythonbasico/Aula3-OPERADORES-LOGICOS.py"
opcoes:
1 = Escreve Lucas
2 = Escreve isabelly
3 = Escreve Daciolo
Escolha uma opcao: 8
opcao invalida
...