Source Code:
(back to article)
import numpy as np data = [1, 2, 3, 4, 5] mean = np.mean(data) print(mean)
Result:
Report an issue