0 out of 68 challenges solved

Calculate the square root of each element in the given list

import math

def calculate_square_root(numbers):
    """
    Calculates the square root of each element in the given list.

    Args:
        numbers (list): The input list of numbers.

    Returns:
        list: A new list with the square root of each element.
    """
    # TODO: Implement the calculate_square_root function
    pass