forked from idaeschool/yeardream_04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prac5_bh.py
88 lines (74 loc) · 2.62 KB
/
prac5_bh.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# prac5.py
class Animal:
def __init__(self, name, species):
self.name = name
self.species = species
class Zoo:
def __init__(self):
self.animals :list[Animal]= []
def add_animal(self, animal:Animal):
for ani in self.animals:
if ani.name == animal.name and ani.species == animal.species:
print(f"\"{animal.name} the {animal.species}\"은 이미 동물원에 있습니다. 다른 이름을 사용하거나, 다른 종으로 추가해주세요.")
return
self.animals.append(animal)
def show_animals(self):
print("현재 동물원에는 다음 동물들이 있습니다 : ")
for animal in self.animals:
print(f"- {animal.name} the {animal.species}")
def show_animals_by_species(self, species:str):
"""
입력받은 종의 동물만 출력합니다.
"""
for animal in self.animals:
if animal.species == species:
print(f"- {animal.name} the {animal.species}")
def main():
# 동물원을 선언하고 10마리의 동물들을 추가합니다.
zoo = Zoo()
zoo.add_animal(Animal("Leo", "Lion"))
zoo.add_animal(Animal("Harry", "Hippo"))
zoo.add_animal(Animal("Ella", "Elephant"))
zoo.add_animal(Animal("Gerry", "Giraffe"))
zoo.add_animal(Animal("Gira", "Giraffe"))
zoo.add_animal(Animal("Terry", "Lion"))
zoo.add_animal(Animal("Barry", "Bear"))
zoo.add_animal(Animal("Larry", "Leopard"))
zoo.add_animal(Animal("Cary", "Crocodile"))
zoo.add_animal(Animal("Mary", "Monkey"))
# 동물원에 있는 모든 동물을 출력합니다.
zoo.show_animals()
## 출력 결과 :
'''
현재 동물원에는 다음 동물들이 있습니다 :
- Leo the Lion
- Harry the Hippo
- Ella the Elephant
- Gerry the Giraffe
- Gira the Giraffe
- Terry the Lion
- Barry the Bear
- Larry the Leopard
- Cary the Crocodile
- Mary the Monkey
'''
# 특정 종에 해당하는 동물들의 이름만 출력합니다.
zoo.show_animals_by_species("Lion")
# 출력 결과 :
'''
- Leo the Lion
- Terry the Lion
'''
zoo.show_animals_by_species("Elephant")
# 출력 결과 :
'''
- Ella the Elephant
'''
# 이미 존재하는 동물을 추가한 경우, 해당 동물이 이미 있음을 출력합니다.
zoo.add_animal(Animal("Leo", "Lion"))
# 출력 결과 :
'''
"Leo the Lion"은 이미 동물원에 있습니다. 다른 이름을 사용하거나, 다른 종으로 추가해주세요.
'''
if __name__ == "__main__":
main()