forked from bwpriest/devops_tutorial_2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.py
More file actions
39 lines (32 loc) · 703 Bytes
/
example.py
File metadata and controls
39 lines (32 loc) · 703 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
class ArithmeticPair:
"""
Arithmetic operations on a given pair of numbers
Args:
x:
The first operand.
y:
The second operand.
"""
def __init__(self, x, y):
self.x = x
self.y = y
def sum(self):
"""
Compute :math:`x + y`.
"""
return self.x + self.y
def difference(self):
"""
Compute :math:`x - y`.
"""
return self.x - self.y
def product(self):
"""
Compute :math:`x * y`.
"""
return self.x * self.y
def quotient(self):
"""
Compute :math:`x / y`.
"""
return self.x / self.y