What is Iteration?
Iteration is used in programming when you want something to happen repetitively.
Using loops makes your code more efficient.
It is better than writing out the same lines over and over..

Why code using Iteration?
It is used in programming to repeat a section of code. This can happen over and over again for a certain number of times.
The output of the code below was created with just 2 lines of code

Count-Controlled Iteration in Python
For Loops are a type of Iteration that allow the coder to specify how many times a section of code should be repeated during the running of a program.
