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 for loop lets us repeat code a **fixed number of times**. ``` for character in "hello": print character # will print each letter in the world "hello" until it reaches the last one, "o" ```