標題:
自定函式 (二) - 回傳多個值
[打印本頁]
作者:
tonyh
時間:
2022-6-18 17:17
標題:
自定函式 (二) - 回傳多個值
def getScore(a,b,c):
best=max(a,b,c)
worst=min(a,b,c)
final=a*0.3+b*0.3+c*0.4
return best,worst,final
best,worst,final=getScore(85,97,95)
print("最佳分數:{}".format(best))
print("最差分數:{}".format(worst))
print("總評分:{}".format(final))
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2