Respuesta :
Answer:
Because you want to process every item in the list in a similar way, you can use a loop to iterate through every item and take some action with it.
Explanation:
hopefully this helped
A for loop provides a simple and efficient method of performing ;
- a particular operation on every item in a specified range or list
- Using every item in a list to achieve a certain objective.
The for loop method provides a straight forward process of picking items or values in a specified range one after the other.
The selected values in the range may be used to perform a particular operation such as multiplying each number in a range by another value.
When a specified task is to be accomplished requiring that items in a certain range are required, then a for loop provides the convenience to achieve such task.
Therefore, for loops are very popular in programming due to their capability in handling repetitive task on a range of items.
Learn more :https://brainly.com/question/18768438