python计算平方根函数是什么 python计算平方根的函数

主机教程 建站分享 2年前 (2022-11-30) 185次浏览

文章摘要:python计算平方根函数是什么 python计算平方根的函数

python中使用sqrt函数计算平方根,具体方法如下: sqrt():sqrt()函数的作用是返回数字x的平 […]

python中使用sqrt函数计算平方根,具体方法如下:

sqrt():sqrt()函数的作用是返回数字x的平方根。

sqrt()函数语法:

math.sqrt( x )

sqrt()函数使用方法:

import math #导入math模块

print "math.sqrt(100) : ", math.sqrt(100)
print "math.sqrt(7) : ", math.sqrt(7)
print "math.sqrt(math.pi) : ", math.sqrt(math.pi)

输出结果为:

math.sqrt(100) : 10.0math.sqrt(7) : 2.64575131106math.sqrt(math.pi) : 1.77245385091


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python计算平方根函数是什么 python计算平方根的函数
文章链接:http://www.7966.org/post/15499.html
转载请注明出处

喜欢 (0)