Created
October 25, 2017 19:38
-
-
Save tkovs/d6cb8c86ffccffda37bd15d24461fa33 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
idade = int(input('digite um numero: ')) | |
ocupacao = input('informe sua ocupacao: ') | |
if 18 < idade < 60: | |
if ocupacao == 'estudante': | |
preco = 12 | |
elif ocupacao == 'professor': | |
preco = 15 | |
else: | |
preco = 20 | |
else: | |
preco = 10 | |
print(preco) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment