Programming python 2.7 – design a modularized body mass index program
Design a modularized Body Mass Index (BMI) Program in Python 2.7 which will calculate the BMI of the user. The formula to calculate the BMI is as follows: BMI = Weight *703/Height^2 Your program design must contain the following: A method named getWeight to obtain the weight of a player A method named getHeight to obtain the height of a player A method named calculateBMI to […]