[Solved]-Python Write Program Creates Class Represent Spend Time Every Week Inside Class Need 2d Ar Q37184182
In Python, write a program that creates a class to representwhat you spend your time on every week. Inside of that class, youwill need a 2D array that represents each day of the week and howmuch time you spend on any given activity (the size should be 7 bywhatever the number of activities you perform in a week). You mayenter the values however you like, but you will need to display thearray so that you understand your time management skills in a moreconcrete manner.
Sampleoutput: 0 2 4 2 4 0 0 This row could represent your hours spent reading books.
0 5 4 1 1 0 2 This rowcould represent your hours spent going toclass.
Expert Answer
Answer to In Python, write a program that creates a class to represent what you spend your time on every week. Inside of that clas… . . .
OR

