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