Python で sqrt 関数を使用するにはどうすればよいですか?以下は sqrt 関数の概要です:
Python 数値 sqrt() 関数は、x の平方根 (x > 0) を返します。
構文
以下は sqrt() メソッドの構文です。
import math
math.sqrt( x )
注 - この関数には直接アクセスできません。数学モジュールをインポートしてから、数学静的オブジェクトを使用してこの関数を呼び出す必要があります。
パラメータ
x - これは数値式です。
戻り値
このメソッドは、x の平方根 (x > 0) を返します。
sqrt() メソッドは、数値 x の平方根を返します。
関連する推奨事項: 「Python ビデオ チュートリアル 」
例
import math # 导入 math 模块 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
以上がPython で sqrt 関数を使用する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。