10 lines
204 B
Python
10 lines
204 B
Python
# mycalculator.py with add and subtract functions
|
|
|
|
def add(x, y):
|
|
"""This function adds two numbers"""
|
|
return x + y
|
|
|
|
def subtract(x, y):
|
|
"""This function subtracts two numbers"""
|
|
return x - y
|