Source code for rtd.calculator.operations

"""
This module contains the functions for the calculator.
"""
[docs]def add(a, b): """Addition""" return a + b
[docs]def multiply(a, b): """Multiplication""" return a * b
[docs]def subtract(a, b): """Subtraction""" return a - b