Skip to content

Commit 8f06115

Browse files
committedJan 15, 2024
Language changes
1 parent 7069beb commit 8f06115

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

Diff for: ‎Data structures/Dictionary keys/task.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Try to figure out what's wrong with this dictionary and fix it.
44

55
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.

Diff for: ‎Data structures/List items/task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ animals[:] = []
99

1010
### Task
1111
Make all `animals` elephants by replacing the last two items.
12-
We suggest that you first run the program in the IDE without changes to 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.
1313

1414
<div class='hint'>Use assignment to a slice as in examples.</div>
1515

0 commit comments

Comments
 (0)
Please sign in to comment.