Warmup

correct the loop:

# should count down from 10 to 1 and then print "blast off!"
for i in range(10, 1):
	print(i)
	print("blast off!")

Agenda

  • Unit 2 Exam
  • Lesson 3.1 (Intro to Lists)