-
bmi.csv的欄位名稱為:姓名,身高,體重,BMI,狀態
```
import random
class BMI():
def __init__(self,name:str,height:int,weight:int):
self.name = name
self.height = height
self.weight…
-
```
請輸入身高(cm):178
請輸入體重(kg):80
您的BMI:25.2
您的體重:過重
```
-
```
def get_name(nums:int=2)->list[str] ->程式不變
def generate_bmi(names:list[str])->list[BMI]: ->傳出的為list內有BMI的實體
```
## class的寫法
```
class BMI():
def __init__(self,name:str,height:int,weig…
-
- 要檢查使用者輸入的格式
```
請輸入身高(cm):xxx
請輸入體重(kg):xxxx
您的BMI是:xx
您的體重:xx
```
-
Hey @Pallavi1926 ,
I hope you are doing well!
https://github.com/user-attachments/assets/c2a7d363-4e25-4d75-bc1c-ace4d3c348c6
I have encountered a problem with the BMI calculator in the pro…
-
i want to add this .
Hey @florinpop17 can you assign this to me with hacktoberfest label and good first issue .
-
#### 請檢查輸入的格式
- 格式錯誤,結束程式
```
請輸入身高(cm):170
請輸入體重(kg):80
您的BMI值:27.6
您的體重:輕度肥胖
```
-
ADDING A BMI CALCULATOR USING HTML,CSS AND JS
-
```
請輸入人數:5
姓名:xxxx
身高:xxx公分
體重:xxxx公斤
bmi:xx
狀態:xxxxx
=================
姓名:xxxx
身高:xxx公分
體重:xxxx公斤
bmi:xx
狀態:xxxxx
=================
姓名:xxxx
身高:xxx公分
體重:xxxx公斤
bmi:xx
狀態:xxxxx
====…
-
- 要檢查使用者輸入的格式,如果輸入錯誤,要求使用者重新輸入
-請將計算體重狀態,定義一個function
```
def get_status(bmi:float)->str:
pass
```
-------
```
請輸入身高(cm):xxx
請輸入體重(kg):xxxx
您的BMI是:xx
您的體重:xx
```