+ 1
What is the error?
Please, Whats wrong tell me.. https://code.sololearn.com/cA5y3D3hSLN4/#py
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(...))