现有字符串 s = "international",想要输出单词 nation,正确的做法是?
print(s[5:])
print(s[5: 11])
print(s[6: 10])
print(s[6: 11])