Link Search Menu Expand Document

Iteration

This module focuses on iteration. It covers the following topics:

  • for
  • range(stop)
  • range(start, stop, step) (not in the book)
  • reassignment (x = 5; x = 7)
  • updating variables (x = x + 1)
  • while
  • break
  • abs

📖 Learn the material

✍️ Proceed to the iteration test (estimated time needed: 60 minutes)


⬅️ Return to Conditionals