answer please fast python
Attachments:
Answers
Answered by
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
Social Sciences,
2 months ago
English,
2 months ago
English,
4 months ago
Math,
4 months ago
Math,
10 months ago