gpt4 book ai didi

python - 查找列表的平均值

转载 作者:太空宇宙 更新时间:2023-11-03 20:03:26 24 4
gpt4 key购买 nike

如何在 Python 中找到列表的平均值?

[1, 2, 3, 4]  ⟶  2.5

最佳答案

对于 Python 3.8+,请使用 statistics.fmean用于 float 的数值稳定性。 (快。)

对于 Python 3.4+,请使用 statistics.mean用于 float 的数值稳定性。 (慢一些。)

xs = [15, 18, 2, 36, 12, 78, 5, 6, 9]

import statistics
statistics.mean(xs) # = 20.11111111111111

对于旧版本的 Python 3,请使用

sum(xs) / len(xs)

对于Python 2,将len转换为 float 以获得浮点除法:

sum(xs) / float(len(xs))

关于python - 查找列表的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59105397/

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