Please enable JavaScript to use CodeHS

tracy Glossary

Flashcards

Course:

Module:

Lesson:

Search:

If Statement General

An if statement lets you ask a question to the program and only run code if the answer is true.

If Statement

Elif Python

A control flow tool used as a second condition check after an if statement. It is a contraction of else if.

While Loop General

Lets us repeat code as long as something is true.

While Loop