Which of these statements display "scratch" in the console?

print(s[11:18])print(s[11])print(len(s))print(s.replace("scratch", "")

Perfect! We can put the indices of the substring into brackets and separate them with a colon.

Oh noes! We can put the indices of the substring into brackets and separate them with a colon.