Compute Variance
Write a function that outputs the (sample) variance given a list of integers.
Note: round the result to 2 decimal places.
Example:
Input:
test_list = [6, 7, 3, 9, 10, 15]
Output:
get_variance(test_list) -> 13.89
Next question: Cumulative Reset.....
Loading editor