+ 1

What is the error?

Please, Whats wrong tell me.. https://code.sololearn.com/cA5y3D3hSLN4/#py

6th Jul 2019, 2:51 PM
Jubair
Jubair - avatar
2 Answers
+ 2
No indentation. Python is really sensitive about it, you can't skip it. if g == "male": print(bmr_male) ... One more thing, you are trying to multiply strings (the inputs), that doesn't work. You should turn them into integers (or floats): w = int(input(...))
6th Jul 2019, 2:56 PM
Airree
Airree - avatar