This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Faça um programa que pergunte a hora ao usuário e, baseando-se no horário | |
descrito, exiba a saudação apropriada. Ex. | |
Bom dia 0-11, Boa tarde 12-17 e Boa noite 18-23. | |
""" | |
entrada = input('Digite que horas é: ') | |
try: | |
hora = int(entrada) | |
if hora >= 0 and hora <= 11: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nome = input('Digite seu Nome: ') | |
senhaUsuario = input('Crie uma Senha de Usuario: ') | |
print('-' *10) | |
print(f'BEM VINDO {nome} ''DIGITE SUA SENHA PARA CONTINUAR: ') | |
senhaEntrada = input() | |
if senhaUsuario == senhaEntrada: | |
print('-' * 10) | |
print('BEM VINDO AO SISTEMA NEXUS') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nome = input('Qual Seu Nome ?') | |
peso = float(input('Qual seu Peso ?')) | |
altura = float(input('Qual sua Altura ?')) | |
imc = peso/altura**2 | |
print(f'{nome} seu Indice de Massa Muscular é: {imc:.2f}') | |
print('E voce esta:') | |
if imc<=17: | |
print('"Muito abaixo do Peso"') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
peso = float(input('Qual seu Peso ?')) | |
altura = float(input('Qual sua Altura ?')) | |
imc = peso/(altura**2) | |
print('Seu IMC é:{}'.format(round(imc))) | |
if imc<=17: | |
print('Muito abaixo do Peso') | |
elif imc<=18.49: | |
print('Abaixo do Peso') |