I am getting some strange results with extracting sublist.
list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Switching the first and second index produces the same results.
list[:][1]
Out[8]: [4, 5, 6]
list[1][:]
Out[9]: [4, 5, 6]
and if I do this, it gives me an error
list[0:1][1]
Traceback (most recent call last):
File "<ipython-input-10-93d72f916672>", line 1, in <module>
list[0:1][1]
IndexError: list index out of range
Is this some known error with python 2.7?
When you slice a list say 0:5, list will get sliced excluding list[5]
Its same situation here, so its only 0th element present in list that is your list after slice is [[1,2,3]], which means 0th element is [1,2,3] and 1st element is out of range.!