Select which is true for for loop
Python’s for loop used to iterates over the items of list, tuple, dictionary, set, or string
else clause of for loop is executed when the loop terminates naturally
else clause of for loop is executed when the loop terminates abruptly
We use for loop when we want to perform a task indefinitely until a particular condition is met
Answers
Answered by
10
Answer:
the last statement is correct
Answered by
4
Option A is the correct answer to your question.
For loop is used to iterate over items of any sequence, such as a list or a string.
Iterate: Performing a task repeatedly.
In general, loops statements are used when we want to run the same coding again and again.
Similar questions