# Homework 15, challenge: BMI. # # Prompt for height in metres and weight in kg. Compute: # bmi = weight / (height * height) # Print the result with one decimal place using an f-string: f"{bmi:.1f}" # # Run with: python exercises/15/homework/04-bmi.py # Your code goes here: