+ 3
Amm im new in python im kid but one ting how is 2 **5 32? If 2×2×2×5=40 Yea but when you put 4 you get tis 2×2×2×4=32? im rith?
if im not right then tell me pls.
13 Respostas
+ 15
2**5 bro here (**) is exponential operator.
Exponential means (that no. Into that times )
Eg. 2**4
= 2*2*2*2
2**9
= 2*2*2*2*2*2*2*2*2
3**3
=3*3*3
5**2
=5*5
Thanks
+ 4
2**5 = 2*2*2*2*2 = 32
which basically means,
2*2=4
4*2=8
8*2=16
16*2=32
+ 1
I don't no
+ 1
This is exponentiation. Which means your will have to bring the first number before the asterisk ( i.e 2) into the number of times the second number which is 5. So we will have 2×2×2×2×2= 32.
+ 1
it's exponential representation 2**5 means 2x2x2x2x2 which is 32, those consecutive '**' means exponential in python
0
2**5
0
Thxxxxx<3
0
Thank you for clarification
0
Try writing in English instead of Wigger,now FuckOff...
0
Multiply 2 five times (2*2*2*2*2)=32
- 1
Yea so like others are saying it actually means 2^5 or 2 to the 5th power so..2×2×2×2×2 or 2 **2 or 2×2 and 4 **8 4×4×4×4×4×4×4×4 hope this helps lol math sucks
- 1
It's 2**5 which means 2x2x2x2x2 = 2x2=4x2=8x2=16x2=32 so you see if you count how many 2's I used in that expotation problem I used 5 which is exactly what they want you to do (: <3 hope all goes well!
- 1
mental it is 2**5=32 becoz
it is 2 to the power of 5 means 2*2*2*2*2=32