+ 1
9**(1/2) Please solve this
10 Réponses
+ 10
9**(1/2)==3
16**(1/2)==4
25**(1/2)==5
...........
+ 9
number at power of 1/2 is square root of number.
+ 6
3.
+ 5
** is the exponentiation operator. a**b returns the value of a to the power of b.
So, 9**(1/2) returns 9 to the power of 1/2 i.e. 9 to the power of 0.5 which is 3.
+ 3
in python2:
1/2==0
9**(1/2)=9**0=1
1.0/2==1/2.0=0.5
9**(1.0/2)==9**0.5=3
in python3:
1/2==0.5
9**(1/2)==3
+ 2
Could you not just try it?
0
with briefly
0
Thanks
0
3
0
3?