The built-in Python function slice allows the programmer to select portions of the input that they want to slice out. It has two possible syntaxes, slice(stop) or slice(start, stop, step). In the single parameter version, start and step default to none. The following code will print “Str”.

String = 'String slicing'
s1 = slice(3)
print(String[s1])

Which of the following will result in the string “ti”?

(1 point)
Responses

s1 = slice(2, 6, 2)
s1 = slice(2, 6, 2)

s1 = slice(1, 5)
s1 = slice(1, 5)

s1 = slice(1, 5, 2)
s1 = slice(1, 5, 2)

s1 = slice(2,6)

s1 = slice(2, 6)