Computer Science, asked by yash1703, 4 months ago

answer please fast python​

Attachments:

Answers

Answered by mukherjeearjun2003
1

Answer:

height = float(input("Input your height in meters: "))

weight = float(input("Input your weight in kilogram: "))

print("Your body mass index is: ", round(weight / (height * height), 2))

Sample Output:

Input your height in meters: 5.8

Input your weight in kilogram: 85

Your body mass index is: 2.53

Similar questions