2021-01-16 15:03:34 +04:00

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