


What are Sublists in Python?
A sublist is a list that is contained within another list. In other words, it's a list of items that are part of a larger list. For example, if you have a list `my_list` and you create a sublist `sublist` by taking a subset of items from `my_list`, then `sublist` would be a sublist of `my_list`.
Here's an example:
```
my_list = [1, 2, 3, 4, 5]
sublist = [1, 2, 3]
print(sublist) # prints [1, 2, 3]
print(my_list) # prints [1, 2, 3, 4, 5]
```
In this example, `sublist` is a sublist of `my_list`, because it contains a subset of the items in `my_list`.



