Run
import numpy as np # Initialize array A = np.array([[2, 3], [6, 5]]) # Compute standard deviation output = np.std(A, axis=0) print(output)
Output