What does exponentiation mean? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

What does exponentiation mean?

There is this Python 3 Tutorial, but I'm stuck at the course 'Other Numerical Operations', please help!

11th Sep 2019, 8:52 AM
Sin Yee
Sin Yee - avatar
2 Réponses
+ 1
The Python EXP function is one of thePython Math function which is used to calculate the power of E, Where E is Euler's number approximately equal to 2.71828.
11th Sep 2019, 8:55 AM
KfirWe
KfirWe - avatar
0
Exponenting means multiplying a number with itself. 5 ** 4 means 5 multiplied by itself 4 times. 5 ** 4 = 5 * 5 * 5 * 5 = 625 2 ** 7 = 2 * 2 * 2 * 2 * 2 * 2 * 2 = 128 10 ** 1 = 10
11th Sep 2019, 9:10 AM
Seb TheS
Seb TheS - avatar