2**5 what is the answer and anyone give Explanation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

2**5 what is the answer and anyone give Explanation

29th Mar 2018, 11:54 AM
Alvin Raj
Alvin Raj - avatar
6 Answers
+ 3
2^5 = 2*2*2*2*2 = 32
29th Mar 2018, 11:56 AM
kaliki chandu
kaliki chandu - avatar
+ 3
The ** operator in Python is used to raise the number on the left to the power of the exponent of the right. That is, in the expression 5 ** 3, 5 is being raised to the 3rd power. In mathematics, we often see this expression rendered as 5³, and what is really going on is 5 is being multiplied by itself 3 times. In Python, we would get the same result of 125 by running either 5 ** 3 or 5 * 5 * 5. in your example: 2**5 = 2 * 2 * 2 * 2 * 2 = 32
29th Mar 2018, 12:21 PM
Baraa AB
Baraa AB - avatar
29th Mar 2018, 11:59 AM
kaliki chandu
kaliki chandu - avatar
+ 1
It is correct. 2**5 = 32 2**3 is the same as 2^3
29th Mar 2018, 4:17 PM
Jorge Roman
Jorge Roman - avatar
0
is it correct?
29th Mar 2018, 11:57 AM
Alvin Raj
Alvin Raj - avatar
0
(9 ** (1 / 2) ) what is the answer and anyone give Explanation
8th Jan 2023, 6:24 PM
Abdul Mughni