设有变量赋值s1="it was the best of times",则以下选项中可以输出"best"(无空格)子字符串的是?( )
print(s1[12:16])
print(s1[11:15])
print(s1[11:16])
print(s1[4])