Python实现求中位数

方法

使用python的内置方法list.sorted()对序列进行排序取中位数

实现

设数据为test:

#author:FarryNiu
test = [5,5,6,4,5,4,

你可能感兴趣的:(Python,python,算法,中位数,排序)