Python 建立能根據輸入計算BMI指數的函式

2021-09-29 14:01:27 字數 477 閱讀 7030

身體質量指數bmi是根據人的題中和身高計算得出,計算公式為:bmi=weight/hight^2,其中體重為公斤,身高為公尺。

使用者輸入體重和身高後,計算bmi並根據指數範圍,定義當前健康狀態:18-25之間為正常,小於該範圍為偏瘦,大於該範圍為偏胖。

將bmi 指數和其所代表狀態輸出。

def bmi(weight,hight):

return weight/(hight*hight)

a = bmi(50,1.68)

print (a)

if a<25 and a>18:

print('nomal')

elif a<18:

print('thin')

else:

print('fat')

結果:

17.71541950113379

thin

Python之根據輸入引數計算結果案例講解

define function,calculate the input parameters and程式設計客棧 return the result.匯入需要的依賴庫和日誌輸出配置 coding utf 8 author 葉庭雲 修煉python csdn import numpy as np im...

python根據利潤計算獎金

coding utf 8 簡述 企業發放的獎金根據利潤提成。利潤 i 低於或等於10萬元時,獎金可提10 利潤高於10萬元,低於20萬元時,低於10萬元的部分按10 提成,高於10萬元的部分,可提成7.5 20萬到40萬之間時,高於20萬元的部分,可提成5 40萬到60萬之間時高於40萬元的部分,可...

python 根據輸入,修改檔案裡面內容

import re import sys path e svnprojects template web index.html 修改index.html檔案,設定網路型別 def updatefiles netmodel f open path,r alllines f.readlines f.cl...