Simple syntax question.
In maths if I have two number 3 and 2 and I wish to calculate 3 to the power of 2 then no symbol is required but I write the two small. In
Also: x**(n**-1), which is the same but shorter than x**(1/float(n))
x**(n**-1)
x**(1/float(n))