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 prints rule to the console?
rule
fact = "python rules!" print(fact[7:])
fact = "python rules!" print(fact[7:10])
fact = "python rules!" print(fact[7:11])
fact = "python rules!" print(fact[8:10])