What will this line of code do?
numpy.average(quiz_scores)
1 answer
This line of code will calculate the average or mean value of the quiz_scores array using the numpy library.
numpy.average(quiz_scores)
1 answer