You can calculate square roots using various methods. Here are a few common ways:
1. Using Python's math module:
import math
number = 25
square_root = math.sqrt(number)
print(square_root) # Output: 5.0
2. Using NumPy:
import numpy as np
number = 25
square_root = np.sqrt(number)
print(square_root) # Output: 5.0
3. Using the exponentiation operator:
You can also calculate the square root by raising the number to the power of 0.5.
number = 25
square_root = number ** 0.5
print(square_root) # Output: 5.0
4. Using a calculator:
Most scientific calculators have a square root function (often represented as √).
Choose the method that best fits your needs!
