[codebyte] python
def things_to_do():
todo_list =
while True:
todo = input("Enter things to do for today (or type 'done' to exit): ")
if todo.lower() == "done":
break
todo_list.append(todo)
print("Your todo list is:", todo_list)
return todo_list
def done_list(todo_list):
done_list =
while todo_list:
tasks = input(f"Enter item to move to done list ({todo_list}): ")
if tasks.lower() == "done":
break
elif tasks not in todo_list:
print("Task is not in todo list, try again")
else:
todo_list.remove(tasks)
done_list.append(tasks)
print(f"You've finished a task : {tasks} ")
if not todo_list:
break
print("""
Good job, you've become a step closer to be a better human being!
""")
from datetime import date
print(“”"
### ########## ## ##
### ### ## ## ##
### ### #### ##
########## ########## ## ## #### ##
### ### ## ##
### ### ## ##
### ########## ## ##
“”“)
today = date.today()
print(“Hello, today’s date is:”, today.strftime(”%d %B, %Y"))
name = input("Hello, What’s your name? ")
print(“Heya,”, name )
todo_list = things_to_do()
done_list(todo_list)
[/codebyte]
a noob python dev here, my first project from the scratch haha
It’s for my ADHD, named it HEYA haha
it will ask your name, tell your the date of today,
then user has to write the tasks they want to do for today,
once you’re done, then you get a compliment!
thank you