+ 3
how do they get (2**5)=32 (Exponentiation)(Python 3)
22 ответов
+ 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.
+ 18
And *** is Superpower.
You can see it on the shoulder boards of military personnel.
+ 8
2 * 2 * 2 * 2 * 2 = 32
+ 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)...
+ 7
**** = Very superpower
***** = Megapower
****** = Terapower
************************ = Galaxy
Now I know how to make a galaxy...
+ 5
Jan Markus wow, never heard of Yottapower before 😂. Sounds like a lotta power.
+ 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
+ 4
2*2*2*2*2=32
+ 4
2^5=32 🙂
+ 4
Muhammad Syam'un Al-Ghozi two stars denotes a power and is written in Math as a superscript.
+ 3
Sunil Kumar Sahu how is 2 to the power of 5 equal to 35?
+ 3
2*2=4
4*2=8
8*2=16
16*2=32
+ 3
x = 2
y = 5
exponent = x**y
print (exponent)
output is 32
+ 3
It's nothing but 2 to the power of 5(2^5)
2*2*2*2*2=32
+ 2
2*2*2*2*2 =(2**5) = 32
+ 2
(2**5)=32
It means:2*2*2*2*2=32
+ 2
(2**5)=32 2*2*2*2*2 = 32
+ 1
Nasif Rahman thank you bro...
😆
+ 1
They just raise it to the 5 power
+ 1
# your code goes here
x=1
while (x<=30):
n = 0.01*(2**x)
x=x+1
print(n)