首頁 >後端開發 >Python教學 >python中sqrt是什麼意思

python中sqrt是什麼意思

藏色散人
藏色散人原創
2019-06-24 10:37:5629233瀏覽

python中sqrt是什麼意思

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn