Post date: Aug 31, 2011 10:47:48 PM
Announcements
There will be no lab next Monday Labor Day
Homework
If necessary, complete Project 1: Three programs
Read sections 2.6 Definite Loops and 2.7 Future value pages 43..49
You'll see for loops in future readings
There is no Chapter Quiz for this reading
Lecture Outline
10-15 minutes to take a research questionnaire (not required, not graded)
Tidy up topics in the early chapters. Preview the Python for loop
for index in range(1, 5, 1):
print(index, end=' ')
Output: 1 2 3 4 5