blaupause.multiply

blaupause.multiply(a, b)

Multiplies two numbers.

Function to multiply two numbers.

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

  • b (numbers.Real) – Second operand.

Returns

Product of a and b.

Return type

numbers.Real

Examples

>>> import blaupause
>>> blaupause.multiply(3, 4)
12