I know "how" to use the : operator to extract data from a list in python.
:
Eg:
l = [1,2,3] print(l[0:1]) print(l[-1:])