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
Which of the following code snippets creates a list with the numbers 20 through 25?
numbers = "20, 21, 22, 23, 24, 25"
numbers = (20, 21, 22, 23, 24, 25)
numbers = [20, 21, 22, 23, 24, 25]
numbers = 20, 21, 22, 23, 24, 25