What does loop mean?

A set of instructions that is repeated. A for loop repeats a known number of times; a while loop repeats as long as its condition is true.

Also written as: loops

In a lesson

To drive a square you could write forward, turn, forward, turn, forward, turn, forward, turn. Eight lines for one idea repeated four times. A loop writes the idea once and says how many times. Repeating code is called iteration, and a loop that runs a set number of times is count-controlled.

Learn it

Used in

and 163 more lessons.

Do the lesson in the simulator

All glossary terms