blaupause.subtract

blaupause.subtract(a, b)

Subtracts two numbers.

Function to subtract two numbers.

Parameters
  • a (numbers.Real) – First operand.

  • b (numbers.Real) – Second operand.

Returns

Difference of a and b.

Return type

numbers.Real

Examples

>>> import blaupause
>>> blaupause.subtract(3, 2)
1