subtraction
This commit is contained in:
parent
5ce06fdc77
commit
fadc5cfcf5
1 changed files with 2 additions and 0 deletions
2
math.py
2
math.py
|
@ -1,3 +1,5 @@
|
||||||
def addition(a: float, b: float) -> str:
|
def addition(a: float, b: float) -> str:
|
||||||
return a + b
|
return a + b
|
||||||
|
|
||||||
|
def subtraction(a: float, b: float) -> float:
|
||||||
|
return a - b
|
||||||
|
|
Loading…
Reference in a new issue