Warmup

correct this loop to make it work:

# should count down from 10 to 1 and then print "blast off!"
count = 10
while True:
	print(count)
    count = count - 1

Agenda

  • Today:
    • Unit 2 Quiz 2
      • 3 questions on if/elif/else, while and for loops
    • Assignment 2.9 (review and practice)

Tomorrow

- Unit 2 Exam
- Begin Unit 3 (Data Structures)