python中sqrt是什麼意思?
python中sqrt()方法是傳回數字x的平方根。
以下是sqrt() 方法的語法:
import math math.sqrt( x )
注意:sqrt()是不能直接存取的,需要匯入math 模組,透過靜態物件呼叫該方法。
參數
x -- 數值表達式。
傳回值
傳回數字x的平方根。
以下展示了使用sqrt() 方法的實例:
#!/usr/bin/python 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.64575131106 math.sqrt(math.pi) : 1.77245385091
相關推薦:《Python教程》
以上是python中sqrt是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!