-
Notifications
You must be signed in to change notification settings - Fork 0
/
practicheskaya1.py
66 lines (46 loc) · 1.76 KB
/
practicheskaya1.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
class Point:
amount = 0
def __init__(self, *args):
if len(args) == 2:
self.x = args[0]
self.y = args[1]
else:
self.x = self.y = 0
Point.amount += 1
def __del__(self):
Point.amount -= 1
def distance(self):
return (self.x ** 2 + self.y ** 2) ** 0.5
def __str__(self):
return '({}; {})'.format(self.x, self.y)
p = Point(36, 42)
from math import sqrt, pi
class Circle:
def __init__(self, x, y, radius):
self.centre = Point(x, y)
self.radius = radius
def lencircle(self):
return 2 * pi * self.radius
def square(self):
return pi * self.radius ** 2
def move(self, x, y):
self.centre.x = x
self.centre.y = y
return(x, y)
def distance(self):
return sqrt(self.centre.x ** 2 + self.centre.y ** 2) # поставить исключение(например дел на 0)
def __str__(self):
return "Circle: centre: {}, radius: {}".format(self.centre,
self.radius) # создать объект класса, вывести все методы
def primer(self, x, y):
try:
return x / y
except ZeroDivisionError:
return(f'На ноль делить нельзя!')
Circle1 = Circle(33, 6, 98)
print("Длина окружности: " + str(Circle1.lencircle()))
print("Площадь окружности: " + str(Circle1.square()))
print("Перемещение центра окружности: " + str(Circle1.move(7, 976)))
print("Дистанция: " + str(Circle1.distance()))
print(str(Circle1))
print(Circle1.primer(5, 0))