↻
⏵︎ Run
import numpy as np #initialize a list listA = [2, 3, 5] #find square root of items in the list output = np.sqrt(listA) print(output)
Output