Run
import numpy as np #initialize a list listA = [-4, 9] #find square root of items in the list output = np.sqrt(listA) print(output)
Output