All problems
MediumNumPy
NumPy — mean / std / sum
For an array of scores, print mean, std (rounded 2dp), and sum.
- #numpy
- #stats
Sample input
[78, 82, 91, 65, 88, 73, 95]
Sample output
mean=81.71 std=10.04 sum=572
numpy-stats.pyneeds: numpy
Output
Press "Run code" to execute.
