Introduction
For loops help you repeat a set of actions many times without writing the same code again and again.
When you want to add numbers from 1 to 10.
When you want to print each item in a list one by one.
When you want to perform the same calculation on many values.
When you want to create a pattern by repeating steps.
When you want to process rows in a table or matrix.