Python math.sqrt() 函数
Python math.sqrt() 函数返回数字 x 的平方根
导入模块
import math
语法
math.sqrt( x )
参数
参数 | 说明 |
---|---|
x | 数值表达式 |
返回值
数字 x 的平方根
说明
下面的代码使用 math.sqrt() 函数返回一些数值的平方根
>>> import math >>> math.sqrt(100) 10.0 >>> math.sqrt(7) 2.6457513110645907 >>> math.sqrt(math.pi) 1.7724538509055159