python中sqrt啥意思

图片[1]-python中sqrt啥意思-uusu优素-乐高,模型,3d打印,编程

python中有很多的内置函数,这些函数能实现特定的功能,而不需要重新定义函数。下面看一个math模块中的sqrt()函数。

sqrt() 方法返回数字x的平方根。

以下是 sqrt() 方法的语法:

importmath
math.sqrt(x)

注意:sqrt()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。

参数,x — 数值表达式。

返回值,返回数字x的平方根。

实例

#!/usr/bin/python
importmath#Thiswillimportmathmodule
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.0
math.sqrt(7):2.64575131106
math.sqrt(math.pi):1.77245385091
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容