DUE IN 6 HRS!!!!!!!! BMI Index You are the nutritional coach for a local high school football team. You realize that some of the players are not up to par having returned from summer break. Realizing nutrition plays a key in a productive team, you decide to implement a Body Mass Index Program. Write a modularized Body Mass Index (BMI) Program which will calculate the BMI of a team player. The formula to calculate the BMI is as follows: BMI = Weight *703 / Height^2 Note: Height^2 means, the value of Height raised to the power of 2. Your program should utilize the following functions: A method to obtain the weight of a player A method to obtain the height of a player A method to calculate the BMI of a player A method to display the height, weight, and calculated BMI For this project: You will submit your python code in either the original .py file, or copied into a .txt file. A screenshot of your code having been executed (run). How to Take a Screenshot Tips: Remember, changing a value that has been passed into a function does not change the original value. Data passed into functions are only copies of the original value. Remember to follow the guidelines of good program design. Make sure to use meaningful variable names, include comments as needed, and provide thoughtful output. Remember, while you can pass as many arguments into a function as you want, but a function can only return one thing at a time. Ideally, to use a function to modify a variable or object, you will pass that object into the function, along with any other needed information to make the modifications, make the modifications to the new local copy of the object inside of the function, and then return the modified object. Thus, you will overwrite the original object with the returned modified object. example 1: object1 = modifyFunction( object1 ) #returns modified object1 example 2: object1 = modifyFunction( object1, newData ) #returns modified object1 Example output: C:>python week3.py Welcome to the BMI Index Calculator. Please begin by entering the student’s name, or 0 to quit: Nathan Please enter student’s height in inches: 70 Please enter student’s weight in pounds: 135 Nathan ‘s BMI profile: ———————– Height: 70″ Weight: 135 lbs. BMI Index: 19.4 Enter next student’s name or 0 to quit: Toby Please enter student’s height in inches: 73 Please enter student’s weight in pounds: 310 Toby ‘s BMI profile: ———————– Height: 73″ Weight: 310 lbs. BMI Index: 40.9 Enter next student’s name or 0 to quit: 0 Exiting program… #2 Team Management You are in charge of managing a local softball team, one in which there is a lot of turnover. While you have a couple of regulars, much of the team members come and go frequently. When it comes to organizing games, it is becoming more and more difficult to keep track of the current members, so you decide to write a small program to help you track the current players. Write a modularized program that will utilize a main menu to control the program’s functions and a list to store the members of your team. The following functions that your program needs to include: Print the current member list. Add a new member. Remove a member. Modify an existing member. Exit the program Remeber that you can create a function using ‘def.’ In other words, for adding a new member, you will need a function similar to: def aaddmember. Note: Since we have not covered File Access, do not worry about long term storage for your list. Each time you run the program, you will have to create a new list. You are welcome to skip ahead to the File I/O if you would like to tackle this additional functionality, but file access is NOT required for this assignment. For this project: You will submit your python code in either the original .py file, or copied into a .txt file. A screenshot of your code having been executed (run). How to Take a Screenshot. Tips: The menu logic will use the same structure as your previous progr…

Looking for solution of this Assignment?

WHY CHOOSE US?

We deliver quality original papers

Our experts write quality original papers using academic databases.We dont use AI in our work. We refund your money if AI is detected  

Free revisions

We offer our clients multiple free revisions just to ensure you get what you want.

Discounted prices

All our prices are discounted which makes it affordable to you. Use code FIRST15 to get your discount

100% originality

We deliver papers that are written from scratch to deliver 100% originality. Our papers are free from plagiarism and NO similarity.We have ZERO TOLERANCE TO USE OF AI

On-time delivery

We will deliver your paper on time even on short notice or  short deadline, overnight essay or even an urgent essay