導航:首頁 > 編程語言 > python編程計算平均分

python編程計算平均分

發布時間:2025-01-21 17:41:28

python輸入五門成績,求總分和平均分

有5個學生,每個學生修4門課程,求每個學生所有成績的總分和平均分
#include <stdio.h>
#define First 5
#define Second 6
int main(void)
{
float a[First][Second],sum=0.0;
int i,j,cnt=1;
printf("分別輸入5名同學的4門成績:\n");
for(i=0;i<First;i++)
{
for(j=0;j<Second-2;j++)
{
scanf("%f",&a[i][j]);
}
}
for(i=0;i<First;i++)
{
for(j=0;j<Second-2;j++)
{
sum+=a[i][j];
}
a[i][4]=sum;
a[i][5]=a[i][4]/4.0;
sum=0; //初始化
}
for(i=0;i<First;cnt++,i++)
{
printf("學生%d的成績情況\t\t\t總成績\t平均成績\n",cnt);
for(j=0;j<Second;j++)
{
printf("%.2f\t",a[i][j]);
}
printf("\n");
}
}

Ⅱ 怎麼用python算平均分

以下是一個簡單的python程序:


# 定義一個列表,用於保存15個學生的成績

scores = [78, 89, 95, 62, 80, 72, 86, 91, 68, 75, 83, 77, 90, 84, 88]

# 計算最高分、最低分及平均分

max_score = max(scores)

min_score = min(scores)

avg_score = sum(scores) / len(scores)

# 列印結果

print("最高分:", max_score)

print("最低分:", min_score)

print("平均分:", avg_score)

# 計算高於平均分的人數

count = 0

for score in scores:

if score > avg_score:

count += 1

# 列印高於平均分的人數

print("高於平均分的人數:", count)

Ⅲ Python編程求平均值的兩種方法是

方法一:
scores = [91, 95, 97, 99, 92, 93, 96, 98]
scores2 = []
avg = sum(scores) / len(scores)
print('平均成績是:{}'.format(avg))
for i in scores:
if i avg># 少於平均分的成績放到新建的空列表中
scores2.append(i)
print('低於平均成績的有:{}'.format(scores2))
方法二:
導入函數庫
import numpy as np # 導入 numpy庫,as 即為導入的庫起一個別稱,別稱為np
scores1 = [91, 95, 97, 99, 92, 93, 96, 98]
scores2 = []
average = np.mean(scores1) # 一行解決。
print('平均成績是:{}'.format(average))
# 下面展示一種NumPy數組的操作,感興趣的同學可以自行去學習哈。
scores3 = np.array(scores1)
print('低於平均成績的有:{}'.format(scores3[scores3

閱讀全文

與python編程計算平均分相關的資料

熱點內容
2021微信小程序反編譯教程 瀏覽:561
編程用什麼鍵盤比較好 瀏覽:378
dev編譯器內存地址溢出 瀏覽:993
雲伺服器能開網店嗎 瀏覽:381
如何將家裡的路由器變成伺服器 瀏覽:687
在混合加密的方式下 瀏覽:371
陰謀pdf 瀏覽:328
androidview詳解 瀏覽:551
美女吃草莓解壓視頻 瀏覽:963
android藍牙開發源碼 瀏覽:611
如何查看電腦系統伺服器ip地址查詢 瀏覽:391
把文件夾設鎖 瀏覽:572
命令行語句 瀏覽:220
企友3e財務如何連接伺服器 瀏覽:986
華為手機如何刪除卸載app殘留數據 瀏覽:545
rpm的命令作用 瀏覽:367
如何查看網站的伺服器時間 瀏覽:852
編譯局和人民出版社 瀏覽:654
java泛型extends 瀏覽:328
頭條程序員教學 瀏覽:774