Slicing extracts a portion of a sequence (list, tuple, string) using the syntax sequence[start:stop:step]. It's a powerful, concise feature used constantly in Python.
Basic slicing
nums = [, , , , , ]
nums[:]
nums[:]
nums[:]
nums[:]
