20170430 math.sqrt函数
Posted 云ime
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20170430 math.sqrt函数相关的知识,希望对你有一定的参考价值。
sqrt() 方法返回数字x的平方根
语法:
import math
math.sqrt( x )
注意:sqrt()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
import math # This will import math module
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.6457513110645907 math.sqrt(math.pi) : 1.7724538509055159
以上是关于20170430 math.sqrt函数的主要内容,如果未能解决你的问题,请参考以下文章