2021-01-16 15:06:16 +04:00

11 lines
209 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