“N -te Wurzel einer Zahl Python” Code-Antworten

N -te Wurzel einer Zahl 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))
Pythoning Pythoneeir

Finden Sie die N -te Wurzel von M mit Python

def nthrootofm(a,n):
    return pow(a,(1/n))
a=81
n=4
q=nthrootofm(a,n)
print(q)
sree_007

Ähnliche Antworten wie “N -te Wurzel einer Zahl Python”

Fragen ähnlich wie “N -te Wurzel einer Zahl Python”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen