how do they get (2**5)=32 (Exponentiation)(Python 3) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

how do they get (2**5)=32 (Exponentiation)(Python 3)

8th Nov 2020, 7:23 AM
Dhriti Gautam
Dhriti Gautam - avatar
22 Answers
+ 22
Muhammad Syam'un Al-Ghozi You made a little mistake: after ***** Megapower comes ****** Gigapower, then ******* Terapower, then ******** Petapower, then ********* Exapower, then ********** Zettapower and then *********** Yottapower. https://de.m.wikipedia.org/wiki/Vors%C3%A4tze_f%C3%BCr_Ma%C3%9Feinheiten The English wikipedia site ends at "tera", therefore I linked the German one.
8th Nov 2020, 8:05 AM
Jan Markus
+ 18
And *** is Superpower. You can see it on the shoulder boards of military personnel.
8th Nov 2020, 7:42 AM
Jan Markus
+ 8
2 * 2 * 2 * 2 * 2 = 32
8th Nov 2020, 7:24 AM
Slick
Slick - avatar
+ 7
Yaps! It's same like 2⁵. Because one star (*) is different with two stars (**)... * = Multiply ** = Power 2*5 = 10 2**5 = 32 It's the simple Python formula. You can open the comments from the material of this and find the same question (better if you don't ask what have been asked)...
8th Nov 2020, 7:39 AM
Muhammad Syam'un Al-Ghozi
Muhammad Syam'un Al-Ghozi - avatar
+ 7
**** = Very superpower ***** = Megapower ****** = Terapower ************************ = Galaxy Now I know how to make a galaxy...
8th Nov 2020, 7:46 AM
Muhammad Syam'un Al-Ghozi
Muhammad Syam'un Al-Ghozi - avatar
+ 5
Jan Markus wow, never heard of Yottapower before 😂. Sounds like a lotta power.
9th Nov 2020, 11:38 AM
Sonic
Sonic - avatar
+ 4
Jan Markus Allright allright, I made a little mistake. It's just an accident of my thumb... But don't you realize? You Made a big mistake... Two stars (**) is not a power. It's just a superscript... No more Superpower, or Yottapower, or Cluster... #conspiracy
8th Nov 2020, 8:54 AM
Muhammad Syam'un Al-Ghozi
Muhammad Syam'un Al-Ghozi - avatar
+ 4
2*2*2*2*2=32
9th Nov 2020, 2:22 AM
The INDIAN
The INDIAN - avatar
+ 4
2^5=32 🙂
9th Nov 2020, 8:35 AM
Sanjay Kamath
Sanjay Kamath - avatar
+ 4
Muhammad Syam'un Al-Ghozi two stars denotes a power and is written in Math as a superscript.
9th Nov 2020, 11:37 AM
Sonic
Sonic - avatar
+ 3
Sunil Kumar Sahu how is 2 to the power of 5 equal to 35?
9th Nov 2020, 11:34 AM
Sonic
Sonic - avatar
+ 3
2*2=4 4*2=8 8*2=16 16*2=32
9th Nov 2020, 12:39 PM
Vinay Jaiswal
Vinay Jaiswal - avatar
+ 3
x = 2 y = 5 exponent = x**y print (exponent) output is 32
10th Nov 2020, 6:13 AM
Dennis Onyango
Dennis Onyango - avatar
+ 3
It's nothing but 2 to the power of 5(2^5) 2*2*2*2*2=32
10th Nov 2020, 7:01 AM
Vidhya Lakshmi
Vidhya Lakshmi - avatar
+ 2
2*2*2*2*2 =(2**5) = 32
9th Nov 2020, 2:38 PM
Maariyah Kounain
+ 2
(2**5)=32 It means:2*2*2*2*2=32
9th Nov 2020, 6:05 PM
Bob_ Official
Bob_ Official - avatar
+ 2
(2**5)=32 2*2*2*2*2 = 32
9th Nov 2020, 7:17 PM
Charles Jenkins
Charles Jenkins - avatar
+ 1
Nasif Rahman thank you bro... 😆
8th Nov 2020, 9:28 AM
Muhammad Syam'un Al-Ghozi
Muhammad Syam'un Al-Ghozi - avatar
+ 1
They just raise it to the 5 power
10th Nov 2020, 1:25 AM
George S Mulbah II
George S Mulbah II - avatar
+ 1
# your code goes here x=1 while (x<=30): n = 0.01*(2**x) x=x+1 print(n)
22nd Apr 2021, 2:14 PM
Prateek Gupta
Prateek Gupta - avatar