标签: python string indexing
在打印"abc"[10]时,它会按预期返回IndexError,但是在将索引更改为[10:11]时,它只会返回""。
"abc"[10]
IndexError
[10:11]
""
两个索引语句有何不同?