DrZhang Sometimes we want to retrieve multiple values from a list. We can do this using slicing. Let's look at the [start:stop] slicing syntax. >>> data = [1,2,3,4,5] >>> data[1:2] [2] >>> data[0:2] [1, 2]