doing an assignment in trying to find errors
def main():
task_list: list[str] = []
task_list.append("Complete Task 5.3PP")
task_list.append("Watch 'The Holy Grail'")
task_list.append("Write more Python")
print(f"You have {len(task_list)} tasks on your list:")
for i in range(len(task_list)):
print(f"{i+1}. {task_list[i+1]}")
is the reason this not running because its trying to take 1 extra then is actually in the list