+ 2
what is 9**(1/2)
phython
10 odpowiedzi
+ 14
Write "print(9**1/2)" on code playground
+ 11
3.0
9**(1/2), by the law of indices, = sqrt(9) = 3
But wait, 1/2 is a float, ao it is not 3, 3.0
+ 7
3
+ 4
** power or exponent means a number is multiplied by itself. Here 9 is the base, (1/2) and 0.5 are the exponent. The answer is 3.0
9**(1/2) == 9**0.5
+ 2
1/2 = 0.5 and it's float. then answer is 3.0
+ 1
1/2=0.5 and 0 in python zero division error
ok
9** = root of 9 =3
so answer is 3.0
0
3
0
9**1/2 >>> 9*1/2=3 which also means 3.0 is it right?