Name the python module for mean, median and mode statistical operations.
Answers
Answered by
0
Answer:
Python statistics | mean() function
Luckily, Python3 provide statistics module, which comes with very useful functions like mean(), median(), mode() etc. mean() function can be used to calculate mean/average of a given list of numbers. It returns mean of the data set passed as parameters.
Explanation:
Similar questions