Errata
This page provides any changes that will be made to later copies of Python: Next Steps thanks to feedback from readers.
pg 33, Idea 1 box
There should be a second paragraph:
Using the glossary program as a
template, make some revision flash
cards to help you revise.
If you want to be able to select the flash cards
randomly, you will first need to create a list of
the keys in my_glossary like this:
questions = list(my_glossary.keys())
This is because the indexes in a list are integers
and can be chosen with a random number.
pg 27, Delving Deeper box
In the third sentence the phrase "Code Box 2.1" should read "Code Box 2.2"
In the sixth sentence the phrase "Code Box 2.2" should read "Code Box 2.3"