在python中使用pow()函数计算平方根的方法
pow:pow()函数的作用是返回x的y次方的值。
pow()函数语法:
math.pow( x, y )
pow()函数使用方法:
import math # 导入math模块pow(144,0.5)>>>12.0pow(9,0.5)>>>3.0pow(2,0.5)>>>1.4142135623730951
import math # 导入math模块
pow(144,0.5)
>>>12.0
pow(9,0.5)
>>>3.0
pow(2,0.5)
>>>1.4142135623730951