iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 10
1
def add(a,b):
    return a + b

add(10,2)

關鍵字用def
注意縮排、冒號

執行結果

12


BMI為範例

def bmi(weight,height):
    cal = weight / (height **2)
    return cal
 
inputW,inputH = input("輸入體重kg,身高cm:").split(",")
print ("您的BMI為:"+ str(bmi(eval(inputW),eval(inputH)/100)))

執行結果:
https://ithelp.ithome.com.tw/upload/images/20200925/20112100FYtpWbZn2G.png


上一篇
Python - 計算BMI值
下一篇
Python - NumPy入門
系列文
大數據與AI研習實作與心得 30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言