I need the last 9 numbers of a list and I'm sure there is a way to do it with slicing but I can't seem to get it. I can get the first 9:
num_list[0:9]
Any help would be great. Thanks in advance :)
|
|
|||
|
|
|
You can use negative integers with the slicing operator for that. Here's an example using the python CLI interpreter:
the important line is |
||
|
|
|
|
a negative index will count from the end of the list, so:
|
||
|
|
|
|
The last 9 elements can be read from left to right using numlist[-9:], or from right to left using numlist[:-10:-1], as you want.
|
||
|
|