+ 2
Some one please help me to correct my python code
height=float(input()) weight=float(input()) bmi=weight/height**2 if bmi <18.5: print("Underweight") elif bmi>=18.5 or bmi <25: print("Normal") elif bmi>=25 or bmi<30: print("Overweight") else: print("Obesity")
2 Respuestas
+ 2
* First input is weight and second input is height..
* use and instead of or.
+ 1
Thank you bro🥂it works