+ 2
9**(1/2)
can anyone help me with solution for this
8 Answers
+ 10
It is 9 to the power of 1/2, so ā9 (a square root of 9).
So 3.0 (or also -3.0 to be precise :)
+ 7
@Shikhar I'd assume 9**(1//2) would mean 9**0 so 1, no?
+ 1
3
+ 1
yes it will be 1
0
>>>print(9**(1/2))
3.0
#Or if you type this
>>>print(9**(1//2))
3
0
3
0
3
0
it's 3.0 ... as python wants to be accurate š