todo_list = ['Wake up', 'Eat breakfast', 'Study Python']
task = 'Go for a run'
# enter code here...
print(todo_list)
# expected output: ['Wake up', 'Go for a run', 'Eat breakfast', 'Study Python']
Python
Setting up Python environment...
Output