Known errata are listed below. Last update 6 September 2018. Please contact me if you find additional corrections.
p. 30
Modify exercises 3 and 4 to list all of the values taken on by the step variable in the body section of each loop, where a # body comment is added to each loop like this one for 3(a):
step = 1
while step < 10:
# body
step += 2
This clarifies what to write in exercises 5 and 6.