numbers = [2, 3, 5, 7, 11]first2 = numbers[:2]# first2 is [2, 3]last3 = numbers[2:]# last3 is [5, 7, 11]print(f"{first2 = }")print(f"{last3 = }")