Python | Numpy Quiz | Question 13

Last Updated :
Discuss
Comments

How can you calculate the element-wise square root of a NumPy array arr?

np.sqrt(arr)

arr.sqrt()

np.square_root(arr)

arr.square_root()

Share your thoughts in the comments