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