I have a variable X, it contains a list (Python list), of 10 Numpy 1-D arrays (basically vectors). If I ask for X[100], it throws an error saying: IndexError: list index out of range
Which makes total sense, but, when I ask for X[:100], it doesn't throw an error and it returns the entire list! Why is that?