How would I get the last three elements of a list, not including the first element?
For example, with these two lists
a = ['Matt', '1', '2']
, b = ['Luke', '1', '2', '3']
I would want the returned lists to be: ['1', '2']
and ['1', '2', '3']
. Is there an easy way to do this?