関数 sqrt とは何ですか?
sqrt() は、数値 x の平方根を計算するために使用される関数です。
構文
次は sqrt() メソッドの構文です:
import math math.sqrt( x )
注: sqrt() には直接アクセスできません。数学モジュールをインポートして、静的オブジェクトのメソッドを通じて呼び出します。
パラメータ
#xx -- 数値式。 戻り値数値 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
以上がsqrtとはどのような関数ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。