DrZhang todo = ["call mom", "dishes","painting"] todo.pop(1) print(todo) todo.pop() print(todo) removed = todo.pop() print(todo) print(removed)