2017-09-30 11:03:18 +08:00

13 lines
230 B
Python

def factorial(n, multi=1):
if 1 == n:
return multi
else:
return factorial(n - 1, multi * n)
def is_root(n, exp=2):
root = int(n ** (1 / exp))
if root ** exp == n:
return root
return 0