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
暂无评论内容