Source code for prog_lang_integration.python.calc


[docs] def add(a,b): ''' Add two arguments :param a: first parameter ''' return a + b
def subtract(a,b): return a - b def multiply(a,b): return a * b def divide(a,b): return a / b print(add(1,2))