0
What is the (( math.pow(27,1.3))) in python?
print(math.pow(27,1.3)) -> result is = 3.0 Please explane me. What is the meaning of pow??
8 odpowiedzi
+ 1
27^1.3
+ 1
Hi! pow is the exponentiation of a number
+ 1
Thanks
+ 1
Oh yeah! Many thanks
+ 1
import math
print(math.pow(27, 1.3)
Result:
72,5726352471
+ 1
27^0.334 ~ 3.0
+ 1
You right.
I wrong written that result.
I understand.
Thanks.
0
But why (27,1.3) = 3.0 ,,