gegca.operations

Contents

gegca.operations#

Operations

This module is just there to help with doc building etc. on project creation. You will probably delete it early in the project.

add_two#

add_two(a, b)[source]#

Add two numbers

This is a function that is just there to help with doc building etc. on project creation. You will probably delete it early in the project.

Parameters:
  • a (float) – First number

  • b (float) – Second number

Returns:

float – Sum of the numbers

Examples

>>> add_two(1, 3)
4
>>> add_two(1, -3)
-2