Learn Before
  • For Loops

  • While Loops

Definite vs Indefinite Iteration

  • Definite iteration has a set of instructions that are repeated a specific number of times that is specified in advance. It is implemented by using count-controlled loops, such as for loops

  • Indefinite iteration has a set of instructions that is repeated until a condition is met. It is implemented by using condition-controlled loops, such as while loops.

0

1

4 years ago

Tags

Python Programming Language

Data Science

Related
  • Definite vs Indefinite Iteration

  • Definite vs Indefinite Iteration

Learn After
  • Examples of Definite and Indefinite Iteration