In this lab, you will use what you have learned about accumulating totals in a single-level control break program to complete a python program. the program should produce a report for a supermarket manager to help her keep track of hours worked by her part-time employees. the report should include the day of the week and the number of hours worked for each employee for each day of the week and the total hours for the day of the week. the student file provided for this lab includes the necessary variable declarations and input and output statements. you need to implement the code that recognizes when a control break should occur. you also need to complete the control break code. be sure to accumulate the daily totals for all days in the week. comments in the code tell you where to write your code. instructions study the prewritten code to understand what has already been done. write the control break code execute the program using the following input values: monday 6 tuesday 2 tuesday 3 wednesday 5 wednesday 3 thursday 6 friday 3 friday 5 saturday 7 saturday 7 saturday 7 sunday 0 done here is an example of what the program output should look like: weekly hours worked enter day of week or done to quit: thursday enter hours worked: 6 enter a day of week or done to quit: done day total 6