answered 11 years ago
I don't think there is one but you can define one using a couple of lines of code
def nroot(x,n): return x**(1/n).n() nroot(8,3)