在Python中,可以使用numpy库中的mean函数来计算数组或列表的平均值。以下是mean函数的基本用法示例:
import numpy as np
# 使用numpy库中的mean函数计算数组的平均值
arr = np.array([1, 2, 3, 4, 5])
mean_value = np.mean(arr)
print(mean_value) # 输出结果为3.0
# 使用numpy库中的mean函数计算列表的平均值
list_values = [1, 2, 3, 4, 5]
mean_value = np.mean(list_values)
print(mean_value) # 输出结果为3.0
需要注意的是,mean函数需要接收一个数组或列表作为输入参数,返回该数组或列表中所有元素的平均值。