-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path8.py
49 lines (39 loc) · 1.05 KB
/
8.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
1. write a program to maintain a list of daily tasks and perform operations on it
-- add a new task (avoid repeatations)
-- delete a given task (check if the task exists. if not print error message, if list empty, print error)
-- delete all tasks (check if list empty)
-- show all tasks (check if list empty)
"""
dailyTasks = []
def printList():
if len(dailyTasks) != 0:
print(dailyTasks)
else:
print("list is empty")
def addNewTask(task):
if task in dailyTasks:
print("this task already exists")
print (dailyTasks)
else:
print ("list is empty")
def addNewTask(task):
if task in dailyTasks:
print ("this task already exists")
return
else:
dailyTasks.append(task)
return
def removeTask(task):
if task not in dailyTasks:
print("task unavailable")
print ("task unavailable")
else:
dailyTasks.remove(task)
printList()
addNewTask('wake up')
printList()
addNewTask('get ready')
printList()
removeTask('wake up')
printList()