📜  python 查找列表的平均值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:28.760000             🧑  作者: Mango

代码示例1
numbers = [3, 18, 2, 1, 70, 12, 36, 12, 78, 5, 6, 9]

import statistics

print(statistics.mean(numbers))