Business skills in your professional


"Business Skills in your Professional Life"
Study the following Python code. Walk through the code and explain what the result will be if the input is:
Weight = 120, height = 62
Weight = 200, height = 72
weight = int(input("Please enter your weight in pounds: "))
height = int(input("Please enter your height in inches: "))
bmi = weight/(height*height) * 703
print("Your bmi is: ",bmi)
if bmi<=18.5:
print("You are underweight")
elif bmi<25:
print("You are a normal weight")
elif bmi<30:
print("You are overweight")
else:
print("You are obese")
What are the benefits of using loops in programming? Using the lecture and internet, research examples of loops in python and describe their functions. What is an example of a loop you might see in the real world?
How will basic business skills play a role in your professional life?

Solution Preview :

Prepared by a verified Expert
Business Management: Business skills in your professional
Reference No:- TGS0935057

Now Priced at $30 (50% Discount)

Recommended (95%)

Rated (4.7/5)