exponent.py =========== .. module:: exponent .. function:: square(base) Returns the square of ``base``. .. function:: cube(base) Returns the square of ``base``. .. function:: cuberoot(base) Returns the cube root of ``base``. Requires the math module. .. function:: calc(base, power) Returns ``base`` raised to the ``power`` power.