当列表list中只包含数字时,如何求取它的平均数:from numpy import *a = [52,69,35,65,89,15,34]b = mean(a)print(b)运行结果:51.285714285714285