0
What's Exponential
3 Respostas
+ 3
Like in a**b ?
It’s defined as a**3 == a^3 == a*a*a
If not, what you mean?
+ 1
Exponentiation
Besides addition, subtraction, multiplication, and division, Python also supports exponentiation, which is the raising of one number to the power of another. This operation is performed using two asterisks.
>>> 2**5
32
>>> 9 ** (1/2)
3.0
PLEASE ALSO READ COMMENTS SECTION OF THIS PAGE(link is given below), THAT WILL HELP TO UNDERSTAND.
https://www.sololearn.com/learn/Python/2273/
+ 1
Oh thanks...