I\'m having some trouble figuring out how to slice python lists, it is illustrated as follows:
>>> test = range(10) >>> test [0, 1, 2, 3, 4
Leaving out the end still works when you want to skip some:
range(10)[3::2] => [3, 5, 7, 9]