1# Ellipsis is an object that can appear in slice notation.
2# For example:
3myList[1:2, ..., 0]
4
5'''
6>>> a
7array([[ 1, 2, 3, 4],
8 [ 5, 6, 7, 8],
9 [ 9, 10, 11, 12],
10 [13, 14, 15, 16]])
11
12>>> a[:2,:2] # Ellipsis top left
13array([[1, 2],
14 [5, 6]])
15'''