This is what I have so far.
print(listTest[3: ])
I am just unsure what to put on the other side of the semicolon. -1 gives me one less index then the answer. So I am asking how to get the true end of the list.
This is what I have so far.
print(listTest[3: ])
I am just unsure what to put on the other side of the semicolon. -1 gives me one less index then the answer. So I am asking how to get the true end of the list.
listTest[3:]
Not having anything after the :
means until the end of the list.
You can either put length of the array
listTest[3:len(listTest)]
OR
Leave it empty
listTest[3:]