0
I dint understand on exponentials
2**5 why 32
2 Respuestas
+ 2
Exponentiation (bn) is the mathematical operation that multiples a number (b) a certain number of times (n) with itself. There are three ways to program that behaviour in Python. The power operator ( ** ) raises the left value to the power of the second value.
Source: https://kodify.net/python/math/exponents/#:~:text=Exponentiation%20(bn)%20is%20the,For%20example%3A%202%20**%203%20.
+ 1
Thanks