imprime las potencias de numeros
def power(a, b): return a ** b print(power(2, 3)) A: Python 3.6+ The ** operator is a binary operator that performs exponentiation. It is equivalent to a ** b, where a and b are the operands. The ** operator is also known as the power operator. Python 3.6+ The ** operator