def power(x, n): if n == 0: return 1 else: return x * power(x, n-1)print power(2,7)
Name (required)
email (will not be published) (required)
Website