current_max = 0employee_of_month = ''employee_of_month_location = ''for employee,location,hours in work_hours: if hours > current_max: current_max = hours employee_of_month = employee employee_of_month_location = location else: passreturn (employee_of_month, employee_of_month_location, ...