Introduction
Array slicing lets you take parts of a list easily. Ranges help pick a group of items by their positions.
You want to get the first few items from a list, like the first 3 fruits.
You want to get the last few items, like the last 2 days of the week.
You want to get a middle part, like days 2 to 4 from a list of days.
You want to loop over a part of an array without changing the original.
You want to check or change a section of an array quickly.