0
(2**5) (9**(1/2)
how print( 2**5 ) is 32 and print( 9 ** (1/2) ) is 3.0 ??
2 Answers
+ 12
** is power operator.
2**5 = 2^5
= 2*2*2*2*2 (5 times) = 32
9**(1/2) = 9^0.5
= square root of 9 = 3
+ 8
2**5=2*2*2*2*2=32
9**(1/2)=2nd root(9)=3.0
8**(1/3)=2.0 because 3rd root of 8 = 2.0



