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

Help me in Python 3 Exponentiation

I need code to echo the output of 10737418.24

25th Nov 2020, 2:45 PM
Jeremiah B. Kashililika
Jeremiah B. Kashililika - avatar
2 Réponses
+ 5
You mean this? print(10737418.24) What do you want to exponentiate? Maybe this? print(10737418.24 ** 2)
25th Nov 2020, 2:47 PM
Benjamin Jürgens
Benjamin Jürgens - avatar
+ 1
# your code goes here days = 30 pennys = 0.01 double = pennys*(2**days) print(double) Use this man
9th Mar 2021, 1:26 PM
Rahfi
Rahfi - avatar