Skip to content
Untitled Python workspace
# Start coding here...
import numpy as np
# Define the dataset
data = [-10, 0, 10, 20, 30, 30, 50, 60]
# Calculate the standard deviation of the data
std = np.std(data)
# Print the result
print(std)