Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #BMI Calculator
- import time
- print("Welcome to the BMI(Body Mass Index) Calculator!")
- time.sleep(2)
- kg = float(input("\nEnter your weight in kilograms: "))
- metre = float(input("Enter your height in meters: "))
- print("\nProcessing your request...")
- time.sleep(2)
- BMI = kg / (metre*metre)
- print("Your weight in kilograms is: ",kg)
- print("Your height in meters is: ",metre)
- print("Your BMI(Body Mass Index is: ",BMI)
- #THE END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement