0
I need help with bmi
def bmi_clculator(name,height_m,weight_kg): name="Sunday" Height_m=10 Weight_kg=90 bmi=("weight_kg/height_m**2") print("bmi:") print(bmi) if bmi<25: return name + "not overweight" else: return name+"overweight"
3 Respostas
+ 3
If you want check bmi of 3 or more person than create a for loop and inside the for loop take the user input for name ,weight and height then write BMI calculations formula now you can check 3 or more person bmi
0
Thanks but what if I am to do for 3 or more people how do I go about it