利用倒序切片對 1 - 100 的數列取出最后10個5的倍數。L = range(1, 101)print L[4::5][-10:]上面為什么不是應該寫成 print L[5::5][-10:]5不是第5個元素嗎?切片不是包含開始索引 不包括結束索引嗎? 查看完整描述