You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Data structures/Dictionary keys/task.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,5 +3,5 @@
3
3
Try to figure out what's wrong with this dictionary and fix it.
4
4
5
5
When fixing, be aware of the following requirements
6
-
- Since the dictionary keys can be only immutable types, replace the list with several individual `key:value` pairs with keys of type `str` or with a tuple.
7
-
- Since the keys need to be unique, rename one of the 'Bob' keys to any name you want.
6
+
- Since dictionary keys can only be of immutable types, replace the list with several individual `key:value` pairs with keys of type `str` or with a tuple.
7
+
- Since keys need to be unique, rename one of the `Bob` keys to a name of your choice.
Copy file name to clipboardExpand all lines: Data structures/List items/task.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ animals[:] = []
9
9
10
10
### Task
11
11
Make all `animals` elephants by replacing the last two items.
12
-
We suggest that you first run the program in the IDE without changesto see how the `animals` list looks like after all the operations have been made
12
+
We suggest that you first run the program in the IDE without making any changes. This will allow you to see what the `animals` list looks like after all the operations have been performed.
13
13
14
14
<divclass='hint'>Use assignment to a slice as in examples.</div>
0 commit comments