標題:
自定函式 (二) - 回傳多個值
[打印本頁]
作者:
tonyh
時間:
2022-7-16 15:14
標題:
自定函式 (二) - 回傳多個值
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))
複製代碼
作者:
王捷恩
時間:
2022-7-16 15:26
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("best score:{}".format(best))
print("worst score:{}".format(worst))
print("total score:{}".format(final))
複製代碼
作者:
李沛昂
時間:
2022-7-16 15:28
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://istak.org.tw/seed/)
Powered by Discuz! 7.2