I'm just trying this normal piece of code that has an f-string, but in the particular line mentioned below, I couldn't determine what's the problem:
elif(BMI<25):
print(f"Your BMI is {BMI),you have normal weight.")
You have a )
after the third "BMI", needs to be a }
.