Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #find #nth #root #python
ADD COMMENT
Topic
Name
3+7 =