Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program to manage a task chart Make a tuple with the people s names: Jane, Paul, Kate, John, Dave The names are intentionally
Write a program to manage a task chart
Make a tuple with the peoples names: Jane, Paul, Kate, John, Dave
The names are intentionally all characters to make it easy to line everything up since we have not learned fancy string formatting yet
When printing the task chart, print each column with an end spaces to match the sample run output
Make a twodimensional list
Each row is a persons name, followed by s
Each is a task that can be completed
Prompt the user for names until a name that is not a valid name is entered
Prompt the user for a task number
Change the to an X for the appropriate person and task
Sample Run #bold underlined text is what the user types:
Jane
Paul
Kate
John
Dave
Person? Paul
Task?
Jane
Paul X
Kate
John
Dave
Person? Dave
Task?
Jane
Paul X
Kate
John
Dave X
Person? Jane
Task?
Jane X
Paul X
Kate
John
Dave X
Person?
Note: This is meant to completed by using lists and tuples and not Classes or anything too advanced.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started