List slicing selecting parts of lists
suggest changeSyntax
a[start:end]# items start through end-1a[start:]# items start through the rest of the arraya[:end]# items from the beginning through end-1a[start:end:step]# start through not past end, by stepa[:]# a copy of the whole array- source
Remarks
lst[::-1]gives you a reversed copy of the liststartorendmay be a negative number, which means it counts from the end of the array instead of the beginning. So:
a[-1] # last item in the array
a[-2:] # last two items in the array
a[:-2] # everything except the last two items
(source)
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents