First time here? Check out the FAQ!
answered 2013-11-12 19:52:00 +0100
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)