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
If you're using a variable as the range endpoint, you can use None.
None
start = 4 end = None test[start:end]