7.5 points The function filter_and_sqrt takes a parameter n…
7.5 points The function filter_and_sqrt takes a parameter numbers_list (a non-empty list of integers). It should return a new list containing the square roots of only the even numbers from numbers_list. However, this function currently contains multiple logic and syntax errors. Identify and correct the errors in the code snippet so the function works as intended. You cannot change entire chunks of code nor rewrite it again. Mention the line number where the error is, what the error is, and the correction. 1. def filter_and_sqrt(numbers_list)2. squares = set()3. for number in numbers_list:4. if number % 2 == 15. squares.append(number ** 0.5 )6. return squares