纯 Python 内置序列(list、tuple、str、bytes、bytearray 等)切片一律返回“浅拷贝”的新对象
切片返回新列表,是 Python 故意设计的“安全行为”:不修改原数据,避免副作用。