NumPy - Aggregation Functions
The code below is intended to print the standard deviation of
data. What is wrong?import numpy as np data = [1, 2, 3, 4, 5] print(np.std(data, ddof=1))
