Answer:
k = 3
plist1 = [10, 2, 0, 88, 190, 33, 1, 64]
plist2 = plist1[k:]
print(plist2)
Step-by-step explanation:
Initialize the k as 3
Initialize the plist1 that contains at least k+1 numbers
Slice the plist1 starting from index k until the end of the list, and set it to a new list called plist2
Print the plist2