0
I need help with this python code
i don't know what I am doing wrong https://code.sololearn.com/ct10U6Kta6ex/?ref=app
4 Answers
+ 4
Here in ur code ur doing
Weight/height=BMI
This is an error
U should replace it with this
BMI=weight/height
https://code.sololearn.com/ct3vCl2TbitW/?ref=app
+ 4
Also, it should be height squared. And the output has to be exactly as given in the task description.
+ 4
thanks you all, i also learned i was missing an exponentiation, thanks again