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