+ 4
Please tell me about 2**5 answer
13 Answers
+ 17
x ** n = xโฟ
2**5 = 2 * 2 * 2 * 2 * 2 = 32
+ 16
** symbol is used for exponention in python also
so as 3**4 mean 3^4 =81
2**5 means 2^5=32
+ 13
** operator is used to raise a given number to a given power.
So, 2**2 is 2ยฒ, which is 2 ร 2 = 4
Similarly, 4**3 is 4ยณ, which is 4 ร 4 ร 4 = 64.
So, here 2**5 means 2 ร 2 ร 2 ร 2 ร 2 = 32
+ 7
I think you should have asked "what is '**' in python?" but not the answer๐ค
+ 7
2**5 == 2 * 2 * 2 * 2 * 2 == pow(2, 5) in Python
+ 5
32โ
+ 2
32
0
This is the same as
2*2*2*2*2 = 32
0
2**5=32
0
I am old, and math was a long time ago. So i am kind of a dummy in math now. Could you explain, in the most basic terms the ** and ^ to me. Like how a number is to the "power" of a number. The definition of this in the most "elementry" way. Thanks.
0
32
0
2**5=2*2*2*2*2=32
A**B=B is the power of A