import scipy.stats
import pandas as pd

y=[1,3,5,7,49]
z=pd.Series(y)

############ scipy describe ############
result1 = scipy.stats.describe(y, ddof=1, bias=False)
print(result1)

############ pandas describe ############
result2 = z.describe()
#print(result2)