Skip to content

Commit f69149a

Browse files
committed
End of course has moved
1 parent eed0011 commit f69149a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

core/chapters/c12_dictionaries.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,9 +663,10 @@ def print_words(words):
663663
})
664664

665665
final_text = """
666-
Congratulations! You've reached the end of the course so far. More is on the way!
666+
👌
667+
668+
Now that you can *get* values from a dictionary, you'll soon learn how to *set* values in a dictionary.
667669
"""
668-
# TODO
669670

670671

671672
class CreatingKeyValuePairs(Page):
@@ -1136,4 +1137,6 @@ def substitute(string, d):
11361137
For this to work, we just have to make sure that all the values in `letters` are unique.
11371138
Otherwise it would be impossible to decrypt messages properly. If both `'h'` and `'j'` got replaced with `'q'`
11381139
during encryption, there would be no way to know whether `'qpeef'` means `'hello'` or `'jello'`!
1140+
1141+
Congratulations! You've reached the end of the course so far. More is on the way!
11391142
"""

0 commit comments

Comments
 (0)