-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise_Pets_Everywhere.py
More file actions
48 lines (30 loc) · 941 Bytes
/
Exercise_Pets_Everywhere.py
File metadata and controls
48 lines (30 loc) · 941 Bytes
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
class Pets():
animals = []
def __init__(self, animals):
self.animals = animals
def walk(self):
for animal in self.animals:
print(animal.walk())
class Cat():
is_lazy = True
def __init__(self, name, age):
self.name = name
self.age = age
def walk(self):
return f'{self.name} is just walking around'
class Simon(Cat):
def sing(self, sounds):
return f'{sounds}'
class Sally(Cat):
def sing(self, sounds):
return f'{sounds}'
class Koos(Cat):
def sing(self, sounds):
return f'{sounds}'
# 1 Add nother Cat
# 2 Create a list of all of the pets (create 3 cat instances from the above)
my_cats = [Simon('SImon', 5), Sally('Sally', 6), Koos('Koos', 8)]
# 3 Instantiate the Pet class with all your cats use variable my_pets
my_pets = Pets(my_cats)
# 4 Output all of the cats walking using the my_pets instance
my_pets.walk()