A. python3計算每個學生的總成績
數量少的話可以用列表循環來實現
數量多的話就要用pandas來實現了
B. python用sort求平均值,列表存放了10個整數,分別代表10個評委的評分,編寫程序
#!/usr/bin/python3
arr = [36, 49, 64, 81, 100, 66, 78, 94, 57, 96]
print("排序前%s" % arr)
arr.sort()
print("排序後%s" % arr)
temp = 0
for a in arr:
temp = temp + a
print("平均分是:%.2f" % (temp/len(arr)))
C. Python比賽評分計算代碼編寫,題目如圖,不會麻煩不要答,會停止推送!
n=int(input('請輸入總共幾名評委:'))
li=[]
foriinrange(n):
li.append(float(input('請輸入第%d名評委評分:'%(i+1))))
print('該歌手最終成績為:'+str((sum(li)-max(li)-min(li))/(n-2)))
D. Python編程題:編寫函數,計算某班級學生考試的平均分
defavgScore(scores,n=10):
s=0
foriinrange(len(scores)):
s+=scores[i]
returns/n
scores=[90,88,76,45,77,95,66,88,91]
print("按班級人數計算的平均值:{:.2f}".format(avgScore(scores)))
print("按考試人數計算的平均值:{:.2f}".format(avgScore(scores,len(scores))))
E. python求一組數組最大值,最小值,平均值
Python的數組就是列表。比如對列表ls=[1,2,3,4,5,6]來處理。
sum(ls)#返回列表總和
max(ls)#返回列表裡最大值
min(ls)#返回列表裡最小值
len(ls)#返回列表長度
sum(ls)/len(ls)#返回列表的平均值
(sum(ls)-max(ls)-min(ls))/(len(ls)-2)#返回比賽評分常用的規則,去掉一個最高分,去掉一個最低分,再求平均分。