I want to iterate over and enumerate the last few items of a list:
a = [1,2,3,4,5]
[c for c, i in enumerate(a[-3:], -3)] gives:
[c for c, i in enumerate(a[-3:], -3)]