Board logo

標題: 自定函式 (二) - 回傳多個值 [打印本頁]

作者: tonyh    時間: 2022-6-18 17:17     標題: 自定函式 (二) - 回傳多個值

  1. def getScore(a,b,c):
  2.     best=max(a,b,c)
  3.     worst=min(a,b,c)
  4.     final=a*0.3+b*0.3+c*0.4
  5.     return best,worst,final
  6. best,worst,final=getScore(85,97,95)
  7. print("最佳分數:{}".format(best))
  8. print("最差分數:{}".format(worst))
  9. print("總評分:{}".format(final))
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2