module documentation

Provides recursive function power(x,n) that uses repeated squaring technique.

Function power Compute the value x**n for integer n.
def power(x, n):

Compute the value x**n for integer n.