Please enable JavaScript to use CodeHS

PCEP Prep Glossary

Flashcards

Course:

Module:

Lesson:

Search:

Loop General

A loop is a way to repeat code in your program.

Loop

For Loop Python

A for loop lets us repeat code a **fixed number of times.**

While Loop Python

Lets us repeat code as long as something is true.

Break Python

Exits the current loop and resumes execution at the next statement.