''' Purpose: estimates annual consumption of a commodity Name: Computing ID: Checker: ''' # Important time constants WEEK_PER_YEAR = 52 WEEK_DAYS_PER_WEEK = 5 WEEKEND_DAYS_PER_WEEK = 2 # Get input commodity of interest # Determine weekday consumption and weekend day consumption prompts # Separately get weekday and weekend day consumptions # Compute weekly consumption # Compute yearly consumption # Report yearly consumption