x ** y
The exponentiation operator raises the first operand to the power of the second. It is right associative meaning:
x ** y ** z == x ** (y ** z)
2 ** 4 // 162 ** -3 // 0.125-2 ** 3 // -816 ** .5 // 4