Answer:
weightPound = float(input("Enter your weight in pounds "))
heightInches = float(input("Enter your height in inches "))
weightKg = weightPound*0.453592
heightMeter = heightInches*0.0254
BodyMassIndex = weightKg/(heightMeter*heightMeter)
print("")
print("Your Weight in kilograms is: ")
print(weightKg)
print("Your Height in meters is: ")
print(heightMeter)
print("Your Body Mass Index is: ")
print(BodyMassIndex)
Explanation: