Introduction
Slices let you work with lists of items easily. Common slice operations help you add, remove, or change items in these lists.
You want to add a new item to a list of names.
You need to remove an item from a list of numbers.
You want to get a part of a list, like the first three items.
You want to find how many items are in a list.
You want to change an item in a list.