more stuff
This commit is contained in:
parent
231c836d2d
commit
2a413136dd
1 changed files with 7 additions and 0 deletions
7
math.py
7
math.py
|
@ -3,3 +3,10 @@ def addition(a: float, b: float) -> float:
|
||||||
|
|
||||||
def subtraction(a: float, b: float) -> float:
|
def subtraction(a: float, b: float) -> float:
|
||||||
return a - b
|
return a - b
|
||||||
|
|
||||||
|
def multiplication(a: float, b: float) -> float:
|
||||||
|
return a * b
|
||||||
|
|
||||||
|
def division(a: float, b: float) -> float:
|
||||||
|
return a / b
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue