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
What code should be added to Line 4 so that detail is printed to the console?
detail
string_one = "mousetail" string_two = "deviation" string_three = #what code goes here? print(string_three)
string_two[0:2] + string_one[5:]
string_two[0:1] + string_one[5:8]
string_two[0:2] + string_one[5:8]
string_two[1:2] + string_one[5:]