👉 In computer science, a sublist is a part of an array or list that contains at least one element. Sublists are often used to retrieve elements from larger lists by slicing them off. For example, in Python, you can use the `list` function with a slice notation to extract the first 5 elements: ```python my_list = [10, 20, 30, 40, 50] sublists = list(my_list)[::5]