香港服务器python使用pow函数计算平方根

已关闭留言

香港服务器python中使用pow()函数计算平方根的方法

powpow()函数的作用是返回xy次方的值。

pow()函数语法:

math.pow( x, y )

pow()函数使用方法:

import math # 导入math模块

pow(144,0.5)

>>>12.0

pow(9,0.5)

>>>3.0

pow(2,0.5)

>>>1.4142135623730951