Question
2.14 zylab: Expression for Calories Burned During Workout The following equations estimate the calories burned when exercising (source): Men: Calories = ( (Age x 0.2017)
2.14 zylab: Expression for Calories Burned During Workout
The following equations estimate the calories burned when exercising (source):
Men: Calories = ( (Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) 55.0969 ) x Time / 4.184
Women: Calories = ( (Age x 0.074) (Weight x 0.05741) + (Heart Rate x 0.4472) 20.4022 ) x Time / 4.184
Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output calories burned for men and women.
Use variables to get the inputs. For example, getting age might look like the following:
age_years = int(input())
Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('Men: {:.2f} calories'.format(calories_man))
Ex: If the input is:
49 155 148 60
Then the output is:
Men: 891.47 calories Women: 580.94 calories
IN PYTHON PROGRAMMING LANGUAGE
The following equations estimate the calories burned when exercising (source): Men: Calories =(( Age 0.2017)+( Weight 0.09036)+( Heart Rate 0.6309)55.0969) Time /4.184 Women: Calories =(( Age 0.074)( Weight 0.05741)+( Heart Rate 0.4472)20.4022) Time /4.184 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output calories burned for men and women. Use variables to get the inputs. For example, getting age might look like the following: \[ \text { age_years }=\text { int }(\text { input }()) \] Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('Men: {:.2f} calories'.format(calories_man)) Ex: If the input is: Then the output is: Men: 891.47 calories Women: 580.94 caloriesStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started