Divide number#

Divide two numbers.

Description#

divide_number is a Python function dividing one number by another, and returning the fraction c:

\[c = \frac{a}{b}\]

Note

If \(b\) is zero it will raise a ZeroDivisionError

Arguments#

afloat

The numerator

bfloat

The denominator

Returns#

cfloat

The fraction