For Loop with Lists

2 min read ·

A list is a collection of multiple values stored in a single variable. A for loop is commonly used to access each element of a list one by one.

Basic Syntax

  • item stores one element at a time
  • Loop runs until the list ends

Simple Example


Loop Through List of Strings


Using range() with List Index


Conditional Logic with List


Modifying List Elements


Nested for Loop with List


Common Mistake

Caution

for loop works with iterables like lists, not integers.


Exercise