-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathtasks.py
48 lines (42 loc) · 1.22 KB
/
tasks.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
# Initialize an empty list to store tasks
tasks = []
# Function to add a task to the list
def add_task(task):
tasks.append(task)
print("Task added: ", task)
# Function to view all tasks in the list
def view_tasks():
if tasks:
print("Tasks:")
for i, task in enumerate(tasks, 1):
print(f"{i}. {task}")
else:
print("No tasks to display.")
# Function to delete a task from the list
def delete_task(task_number):
if task_number > 0 and task_number <= len(tasks):
deleted_task = tasks.pop(task_number - 1)
print("Deleted task:", deleted_task)
else:
print("Invalid task number.")
# Main loop
while True:
print("\nOptions:")
print("1. Add a task")
print("2. View tasks")
print("3. Delete a task")
print("4. Quit")
choice = input("Enter your choice: ")
if choice == '1':
task = input("Enter the task: ")
add_task(task)
elif choice == '2':
view_tasks()
elif choice == '3':
task_number = int(input("Enter the task number to delete: "))
delete_task(task_number)
elif choice == '4':
print("Goodbye!")
break
else:
print("Invalid choice. Please try again.")