Numpy Slice Double Coll Stack Pullow

>>> a = [1,2,3,4,5,6,7,8,9]
>>> a[::3]
[1, 4, 7]
SuperUnknown Python