Mean, Var, and Std

  • + 1 comment

    I did two things to make it work for all the test cases:

    1) commented out printoptions that were recommended in the previous examples, but were not needed in this question

    2) added rounding to 11th decimal place to calculate std: print(numpy.round(numpy.std(arr, axis = None),11))

    Hope thois helps

    • + 0 comments

      Thanks Edvard