Function Python

def power(x, n):
    if n == 0:
        return 1
    else:
        return x * power(x, n-1)
print power(2,7)