PHP前端开发

python中根号怎么表示

百变鹏仔 2个月前 (01-22) #Python
文章标签 根号

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

以下是 sqrt() 方法的语法:(推荐学习:Python视频教程)

import mathmath.sqrt( x )

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

参数

立即学习“Python免费学习笔记(深入)”;

x -- 数值表达式。

返回值

返回数字x的平方根。

实例

以下展示了使用 sqrt() 方法的实例:

#!/usr/bin/pythonimport math   # This will import math moduleprint "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-tutorials.html" target="_self">Python教程栏目进行学习!