gpt4 book ai didi

python - 在 Python 中查找列表的中位数

转载 作者:IT老高 更新时间:2023-10-28 12:24:36 24 4
gpt4 key购买 nike

如何在 Python 中找到列表的中位数?该列表可以是任意大小,并且不保证数字按任何特定顺序排列。

如果列表包含偶数个元素,则函数应返回中间两个的平均值。

以下是一些示例(为显示目的排序):

median([1]) == 1
median([1, 1]) == 1
median([1, 1, 2, 4]) == 1.5
median([0, 2, 5, 6, 8, 9, 9]) == 6
median([0, 0, 0, 0, 4, 4, 6, 8]) == 2

最佳答案

Python 3.4 有 statistics.median :

Return the median (middle value) of numeric data.

When the number of data points is odd, return the middle data point. When the number of data points is even, the median is interpolated by taking the average of the two middle values:

>>> median([1, 3, 5])
3
>>> median([1, 3, 5, 7])
4.0

用法:

import statistics

items = [6, 1, 8, 2, 3]

statistics.median(items)
#>>> 3

对类型也非常小心:

statistics.median(map(float, items))
#>>> 3.0

from decimal import Decimal
statistics.median(map(Decimal, items))
#>>> Decimal('3')

关于python - 在 Python 中查找列表的中位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24101524/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com