- mathモジュールを使用する方法:
import math
number = 16
square_root = math.sqrt(number)
print(square_root)
- 演算子を使用する方法:
number = 16
square_root = number 0.5
print(square_root)
- cmathモジュールを使用する方法(複素数の場合):
import cmath
number = -16
square_root = cmath.sqrt(number)
print(square_root)
- NumPyライブラリを使用する方法:
import numpy as np
number = 16
square_root = np.sqrt(number)
print(square_root)
これらの方法はいずれも正確な結果を返しますが、数値の型や使用するライブラリによって適した方法が異なることに注意してください。また、負の数に対して平方根を計算する場合、cmathモジュールを使用する必要があります。
このような方法でPythonで数値の平方根を取得することができます。