I cant figure out what arguements to use or really even what arguements are.
#Template for Program 2
#The keyword "pass" is a placeholder that does nothing
#Move each line of original code into the appropriate module
#Add arguments to calcBMI() and displayResults() as needed
#original code -- not in modules yet
#cut and paste into appropriate modules below
#revised code broken into modules
#delete "pass" once you add code to a module
#don't forget to indent
def main():
print("Body Mass Index (BMI) Program")
print()
weight = float(input("Enter your weight in pounds: "))
height = float(input("Enter your height in inches: "))
calcBMI()
def calcBMI():
bmi = (weight * 703)/(height * height)
displayResults()
def displayResults(bmi):
print()
print("Your BMI is:", bmi)
#Call the main function to get things started
main()