String related doubt

string = ‘ I study Python ‘
What will be the correct command for output
‘tho’ in string

a) print(string[-1:-4])

b) print(string[-4:-1])

c) print(string[-5:-2])

d) print(string[-2:-5])

in this Question the answer is (b) but in your system it is wrong showing © as answer tell me how?