Statistik Python

# Python supports many stats functions such as the following. Please see https://docs.python.org/3/library/statistics.html for more information.

mean() Arithmetic mean (“average”) of data.

fmean() Fast, floating point arithmetic mean.

geometric_mean() Geometric mean of data.

harmonic_mean() Harmonic mean of data.
CompSciGeek