Skip to content

Latest commit

 

History

History

Python for Loop

Syntax

for val in sequence :

    statement(s)
  • Here, val accesses each item of sequence on each iteration.

tayeb.tas.13913