when is the most appropriate time to use a for loop in python? when the exact number of repetitions needed for the loop is known when the exact number of repetitions needed for the loop is greater than 10 when the exact number of repetitions needed for the loop is less than 10 when the exact number of repetitions needed for the loop is unknown

Respuesta :

The most appropriate time to use a for loop in python when the exact number of repetitions needed for the loop is unknown.

What is loop in Python?

  • Loops in Python In computer programming, a loop is a series of instructions that performs a particular set of instructions or actions based on certain conditions and keeps performing those duties until those conditions are met.
  • In Python, while loops are used to iterate until a certain condition is satisfied. However, as soon as the condition becomes false, the line in the programme that comes after the while loop is run. A code block is defined by all the coding statements that follow a structural directive. The same number of spaces are intended between these statements.
  • Python offers the following loops to satisfy your looping requirements. Python provides three options for executing the loops.

To learn more about Loop in Python refer to:

https://brainly.com/question/26098908

#SPJ4

ACCESS MORE