We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07a7b94 commit 0f62166Copy full SHA for 0f62166
Python-Fundamentals-part2/main1.py
@@ -1,3 +1,6 @@
1
+# EXAMPLES NOT FOR USE
2
+# --------------------
3
+
4
# Create a class called ToDoList
5
# The class should have the following methods:
6
# add_task(task) - This method should add a task to the list of tasks.
@@ -35,4 +38,7 @@ def view_tasks(self):
35
38
# The add_task() method appends a task to the tasks list.
36
39
# The remove_task() method removes a task from the tasks list if it exists.
37
40
# The view_tasks() method prints each task in the tasks list.
-# An instance of the ToDoList class is created with the variable my_list.
41
+# An instance of the ToDoList class is created with the variable my_list.
42
43
44
0 commit comments