Answers for "take nth root in python"

1

nth root of a number python

## How this will work is it takes the n to the power -1 root of num
## n to the power -1 is just 1 over n

def root(num, n):
  return a**(n**-1)

print(root(27, 3))
Posted by: Guest on February-08-2021
1

find nth root of m using python

def nthrootofm(a,n):
    return pow(a,(1/n))
a=81
n=4
q=nthrootofm(a,n)
print(q)
Posted by: Guest on December-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language