Python——求平均值的兩種方法

方法一: scores =  [91, 95, 97, 99, 92, 93, 96, 98]   scores2 = []數組 avg = sum(scores) / len(scores) print('平均成績是:{}'.format(avg))app for i in scores:     if i < avg:         # 少於平均分的成績放到新建的空列表中         s
相關文章
相關標籤/搜索