-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise.py
46 lines (35 loc) · 1.01 KB
/
exercise.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
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 18 14:14:52 2020
@author: saura
"""
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}'
#1 Add nother Cat
class Suzy(Cat):
def sing(self, sounds):
return f'{sounds}'
#2 Create a list of all of the pets (create 3 cat instances from the above)
my_cats = [Simon('Simon', 4), Sally('Sally', 21), Suzy('Suzy', 1)]
#3 Instantiate the Pet class with all your cats
my_pets = Pets(my_cats)
#4 Output all of the cats singing using the my_pets instance
my_pets.walk()