-
Notifications
You must be signed in to change notification settings - Fork 17
/
Animal.py
38 lines (26 loc) · 1.19 KB
/
Animal.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# DESAFIO
# Neste problema, você deverá ler 3 palavras que definem o tipo de animal possível segundo o esquema abaixo, da esquerda para a direita. Em seguida conclua qual dos animais seguintes foi escolhido, através das três palavras fornecidas.
# Entrada
# A entrada contém 3 palavras, uma em cada linha, necessárias para identificar o animal segundo a figura acima, com todas as letras minúsculas.
# Saída
# Imprima o nome do animal correspondente à entrada fornecida.
A = input()
B = input()
C = input()
if A == 'vertebrado' and B == 'ave' and C == 'carnivoro':
resposta = 'aguia'
if A == 'vertebrado' and B == 'ave' and C == 'onivoro':
resposta = 'pomba'
if A == 'vertebrado' and B == 'mamifero' and C == 'onivoro':
resposta = 'homem'
if A == 'vertebrado' and B == 'mamifero' and C == 'herbivoro':
resposta = 'vaca'
if A == 'invertebrado' and B == 'inseto' and C == 'hematofago':
resposta = 'pulga'
if A == 'invertebrado' and B == 'inseto' and C == 'herbivoro':
resposta = 'lagarta'
if A == 'invertebrado' and B == 'anelideo' and C == 'hematofago':
resposta = 'sanguessuga'
if A == 'invertebrado' and B == 'anelideo' and C == 'onivoro':
resposta = 'minhoca'
print(resposta)