-1

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.")
martineau
  • 119,623
  • 25
  • 170
  • 301

1 Answers1

-1

You have a ) after the third "BMI", needs to be a }.

GaryO
  • 5,873
  • 1
  • 36
  • 61