With a positive slice step, what region does text[:] request when both bounds are omitted?
Explanation
For forward slicing, the absent start means the beginning and the absent stop means the end, so the slice spans the whole string. Treating both omissions as zero would incorrectly make the request empty.