Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
A control flow tool used as a second condition check after an if statement. It is a contraction of 'else if' and it is used like this: ``` if condition: do something elif other_condition: do something else else: do another thing ```