+ 4
Why ihave ( 2**5 ) 32 i don't understand
14 odpowiedzi
+ 7
Exponentiation:
2**5=32
1 2 3 4 5
2 * 2 * 2 * 2 * 2 = 32
| | | |
4 8 16 32
+ 5
BAchir Baziz
Look at this Code
It's the same like Царь СОБАКА - Догго I said: 3*3*3*3*3
I hope this answer helps you to understand it.
https://code.sololearn.com/cZH6t248sjW5/?ref=app
+ 5
You welcome. It's also good for ourselves. We can repeat what we learned. Happy coding
+ 3
thank you so much for helping me
+ 3
Duplicate
https://www.sololearn.com/discuss/1882284/?ref=app
https://www.sololearn.com/discuss/663835/?ref=app
https://www.sololearn.com/discuss/1425952/?ref=app
https://www.sololearn.com/discuss/1177414/?ref=app
https://www.sololearn.com/discuss/45703/?ref=app
https://www.sololearn.com/discuss/1760178/?ref=app
https://www.sololearn.com/discuss/82376/?ref=app
https://www.sololearn.com/discuss/24171/?ref=app
https://www.sololearn.com/discuss/42924/?ref=app
https://www.sololearn.com/discuss/64764/?ref=app
https://www.sololearn.com/discuss/1732919/?ref=app
+ 2
It means 2 to the power of 5
+ 2
BAchir Baziz 3**5 == 243
+ 2
Yep. Everyone that answered your question is correct.
2**5 = 32 because...
2*2*2*2*2 = 32
+ 2
It's math power, same as when you're trying to find square area or volume in cube. If you want a simple code, instead of using n*n*n and so on, you can use n**m
n = basis
m = exponent
2**5 = 2*2*2*2*2
2**3 = 2*2*2
2**3 is not equal to 2*3
+ 1
and ( 3**5 )
+ 1
2×2×2×2×2 = 32
+ 1
It means 2 to the power 5
0
it means 2 to the power 5
0
hello