Home /
Expert Answers /
Computer Science /
compulsony-task-part-1-ollow-these-steps-in-this-task-you-will-be-creating-a-program-for-a-small-pa910
(Solved): Compulsony Task Part 1 ollow these steps: In this task, you will be creating a program for a small ...
Compulsony Task Part 1 ollow these steps: In this task, you will be creating a program for a small business that can help it to manage tasks assigned to each member of the team. Copy the template program provided, Taskistamplate.py. and rename it task_managar.py in this folder. This template has been provided to make this Task a little easier for you. Your job is to open and then modify the template to achieve the rest of the compulsory Task set out below. Remember to save your work as you go along. - This program will work with two text files, user.txt and tasks.ext. Open each of the files that accompany this project and take note of the following: - tasks.txt stores a list of all the tasks that the team is working on. Open the tasks.txt file that accompanies this project. Note that this text file already contains data about two tasks. The data for each task is stored on a separate line in the text file. Each line includes the following data about a task in this order: - The username of the person to whom the task is assigned. - The title of the task. - A description of the task. - The date that the task was assigned to the user. - The due date for the task - Either a 'Yes' or 'No' value that specifies if the task has been
Answer; #import statement import os from datetime import date #functions defined def clearConsole(): command = 'clear' if os.name in ('nt', 'dos'): # If Machine is running on Windows, use cls command = 'cls' os.system(command) def Menu(): if usrnm: p