-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.py
83 lines (66 loc) · 2.12 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# calculator.py
from typing import Union
def add(a: Union[float, int], b: Union[float, int]) -> float:
"""Compute and return the sum of two numbers.
Examples:
>>> add(4.0, 2.0)
6.0
>>> add(4, 2)
6.0
Args:
a: A number representing the first addend in the addition.
b: A number representing the second addend in the addition.
Returns:
A number representing the arithmetic sum of `a` and `b`.
"""
return float(a + b)
def subtract(a: Union[float, int], b: Union[float, int]) -> float:
"""Calculate the difference of two numbers.
Examples:
>>> subtract(4.0, 2.0)
2.0
>>> subtract(4, 2)
2.0
Args:
a: A number representing the minuend in the subtraction.
b: A number representing the subtrahend in the subtraction.
Returns:
A number representing the difference between `a` and `b`.
"""
return float(a - b)
def multiply(a: Union[float, int], b: Union[float, int]) -> float:
"""Compute and return the product of two numbers.
Examples:
>>> multiply(4.0, 2.0)
8.0
>>> multiply(4, 2)
8.0
Args:
a: A number representing the multiplicand in the multiplication.
b: A number representing the multiplier in the multiplication.
Returns:
A number representing the product of `a` and `b`.
"""
return float(a * b)
def divide(a: Union[float, int], b: Union[float, int]) -> float:
"""Compute and return the quotient of two numbers.
Examples:
>>> divide(4.0, 2.0)
2.0
>>> divide(4, 2)
2.0
>>> divide(4, 0)
Traceback (most recent call last):
...
ZeroDivisionError: division by zero
Args:
a: A number representing the dividend in the division.
b: A number representing the divisor in the division.
Returns:
A number representing the quotient of `a` and `b`.
Raises:
ZeroDivisionError: An error occurs when the divisor is `0`.
"""
if b == 0:
raise ZeroDivisionError("division by zero")
return float(a / b)