Advertisement
ShaunakVids

6.4 BMI Calculator

Sep 24th, 2024
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. #BMI Calculator
  2.  
  3. import time
  4.  
  5. print("Welcome to the BMI(Body Mass Index) Calculator!")
  6.  
  7. time.sleep(2)
  8.  
  9. kg = float(input("\nEnter your weight in kilograms: "))
  10. metre = float(input("Enter your height in meters: "))
  11. print("\nProcessing your request...")
  12.  
  13. time.sleep(2)
  14.  
  15. BMI = kg / (metre*metre)
  16. print("Your weight in kilograms is: ",kg)
  17. print("Your height in meters is: ",metre)
  18. print("Your BMI(Body Mass Index is: ",BMI)
  19.  
  20. #THE END
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement