PythonSneks Field Guide

An instructionally-designed, open-source introductory Python curriculum for university settings

Module 5 - For Loops

Quick summary description

Before the week begins

Major Topics

Materials

Due This Week:

Graded This Week

Student Difficulty

Module 5 - Staff Meeting

Lessons

Lesson 32- For Loops

Summary: The FOR loop performs a body of actions on each element of a list, one at a time. The body is written to perform the action on a generic iteration variable that represents each of the elements of the list.

Learning Objectives:

Activities:

Misconceptions: None listed so far

Lesson 33- Loop Patterns

Summary: FOR loops are usually used in a few recurring patterns that are useful to memorize.

Learning Objectives:

Activities:

Misconceptions: None listed so far

Lesson 34- Mutability

Summary: Lists can have their value changed, unlike other types of values like strings.

Learning Objectives:

Activities:

Misconceptions: None listed so far