Exponentiation | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Exponentiation

is there a function to do exponentiation ??

23rd Aug 2017, 2:37 PM
Yasser Mamdouh
Yasser Mamdouh - avatar
2 Réponses
- 1
sure ... import math n=math.e**5 print(n) it will print e to the power 5
23rd Aug 2017, 2:42 PM
sayan chandra
sayan chandra - avatar
- 1
import math n=math.pow(math.e,5) print(n) it will also print e to the power 5
23rd Aug 2017, 2:44 PM
sayan chandra
sayan chandra - avatar