-
Notifications
You must be signed in to change notification settings - Fork 5
/
shape_calculator.py
45 lines (32 loc) · 1.02 KB
/
shape_calculator.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
class Rectangle:
def __init__(self, w, h):
self.width = w
self.height = h
def __str__(self):
return f'Rectangle(width={self.width}, height={self.height})'
def set_width(self, w):
self.width = w
def set_height(self, h):
self.height = h
def get_area(self):
return self.width * self.height
def get_perimeter(self):
return 2 * (self.width + self.height)
def get_diagonal(self):
return (self.width ** 2 + self.height ** 2) ** 0.5
def get_picture(self):
if self.width > 50 or self.height > 50:
return 'Too big for picture.'
pic = '*' * self.width + '\n'
pic = pic * self.height
return pic
def get_amount_inside(self, ob):
return self.get_area() // ob.get_area()
class Square(Rectangle):
def __init__(self, s):
super().__init__(s, s)
def __str__(self):
return f'Square(side={self.width})'
def set_side(self, s):
self.width = s
self.height = s