#!/usr/bin/env python # coding: utf-8 # In[5]: import numpy as np arr = [2, 4, 6, 8, 10] print(np.mean(arr)) print(np.median(arr)) print(np.std(arr))