tutorial.eyehunts.com
Python last n elements of list
You can use slice notation to get last n elements of list in Python. Simple use the slicing syntax [ ] by passing a -n: as an argument to it.
Rohit