Class Management Issues

Please report the amount of time spent on programming assignments -- planning, coding, debugging
Be sure to include appropriate comments in your code including your name and appropriate acknowledgements
Submit in the format as assigned
Email attachments should have your name as part of the file attachment's name
Submit Complete assignments for full credit
Submit whatever you have for partial credit
Be sure to acknowledge any help or outside sources you use
Be sure to pledge your work

Decision Structures

Using if, elif, and else.
if and elif contain test.
Multiple elif are allowed.
elif and else are optional.
Note the use of : and indentation.

if (bmi < 25):
   print "Keep up the good work."
elif (bmi < 30):
   print "You could stand to lose a few pounds."
else:
   print "I think we have a serious problem here."   

Relational Operators: <, <=, >, >=, !=, ==
Compound expressions with: and, or, not
Evaluate to: True, False

Homework: Attached