智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69

Python中如何求列表list的平均数
当列表list中只包含数字时,如何求取它的平均数:

from numpy import *
a = [52,69,35,65,89,15,34]
b = mean(a)
print(b)



运行结果:

51.285714285714285


————————————————
智一面的面试题提供python的测试题
使用地址:
http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69