-
Notifications
You must be signed in to change notification settings - Fork 0
/
operations.py
58 lines (43 loc) · 1.65 KB
/
operations.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
def addition(num1, num2):
"""
This function will perform a addition operation on num1 by num2
Note: This function is very simplified... but for the purpose of this exercise
Imagine that you are building a very complex function, and you want to be able to
work with multiple people.
"""
# Add code here
pass
def subtraction(num1, num2):
"""
This function will perform a subtraction operation on num1 by num2
Note: This function is very simplified... but for the purpose of this exercise
Imagine that you are building a very complex function, and you want to be able to
work with multiple people.
"""
pass
def multiplication(num1, num2):
pass
def division(num1, num2):
"""
This function will perform a division operation on num1 by num2
Note: This function is very simplified... but for the purpose of this exercise
Imagine that you are building a very complex function, and you want to be able to
work with multiple people.
"""
pass
def exponentiation(num1, num2):
"""
This function will perform a exponentiation operation on num1 by num2
Note: This function is very simplified... but for the purpose of this exercise
Imagine that you are building a very complex function, and you want to be able to
work with multiple people.
"""
pass
def modulo(num1, num2):
"""
This function will perform a modulo operation on num1 by num2
Note: This function is very simplified... but for the purpose of this exercise
Imagine that you are building a very complex function, and you want to be able to
work with multiple people.
"""
pass