Python Loop Statements

Loop Statements

Loop statements help us to execute a block of code repeatedly in a loop until the given condition fails, or execute a block of code for each element in a given collection.

The following tutorials cover different looping statements, and loop control statements.

  • For LoopFor Loop is used to execute a block of code for each element in the given collection. This tutorial covers syntax, flowchart, and examples.
  • While LoopWhile Loop is used to execute a block of code until a given condition fails. This tutorial covers syntax, flowchart, and examples.
  • For i in range()This tutorial has examples to execute a block of code for each number in the given range using For Loop.
  • While Loop with ElseWe can write a While Loop with a following Else block. This tutorial convert syntax, and examples.
  • Break StatementBreak statement can break the loop without the condition failure or iterator reaching the end of collection.
  • Continue StatementContinue statement can skip the current block execution and continue with the next iteration.
⫷ Previous tutorialNext tutorial ⫸