- eossr def add_task(*ags, **kws): # create a new dictionary representing the new task task = { "content": new_task_content.value, "done": False, "created_at": dt.now() } # add a new task to the list and tell it to use the `content` key to show in the UI # and to use the key `done` to sync the task status with a checkbox element in the UI myList.add(task) # clear the inputbox element used to create the new task new_task_content.clear() To Do List def on_keypress(e): if (e.code == "Enter"): add_task() def on_click(evt): add_task()