iT邦幫忙

0

求三數總和與平均python

  • 分享至 

  • xImage

求第一次期中考第二次期中考與期末考成績,成績皆為整數,請計算分數加總與平均
第一次期中考輸入75分,第二次期中考輸入80分,期末考輸入65分
請問這題怎麼解答?

fillano iT邦超人 1 級 ‧ 2023-01-07 18:22:13 檢舉
你可以用手算或計算機算出總和跟平均嗎?
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

2 個回答

1
whoiam
iT邦新手 5 級 ‧ 2023-01-07 22:30:53
最佳解答

'Answer1 :
dim numpy as np
a = np.array([75,80,65])
print(np.sum(a))
print(np.mean(a))

'Answer2:
a = 75
b = 80
c = 65
scores = a + b + c
ms = scores/3
print(scores)
print(ms)

0
kennex_x
iT邦新手 4 級 ‧ 2023-01-09 10:09:21

Coding

scord = []
first_scord = int(input("1st 期中考: "))
scord.append(first_scord)
second_scord = int(input("2nd 期中考: "))
scord.append(second_scord)
final_socrd = int(input("期末考: "))
scord.append(final_socrd)
total = sum(scord)
avg = round(total/len(scord), 2)
print("1st 期中考:{}\n2nd 期中考:{}\n期末考:{}\n總分:{}, 平均:{}".format(first_scord, second_scord, final_socrd, total, avg))

Result

1st 期中考:75
2nd 期中考:80
期末考:65
總分:220, 平均:73.33

我要發表回答

立即登入回答