Respuesta :

A loop that repeats a set number of times is a for loop.

Python example:
for x in range(1, 10, 1):
     #logic

C example:
for (int i = 0; i < 5; i++)
{
     //logic
}