List indexing such as `a[:3]` are in the NumPy section but they should be in the regular Python list section as well (or only). Also, negative indexing should be included such as `a[-1]` or `a[:-2]`, etc
List indexing such as
a[:3]are in the NumPy section but they should be in the regular Python list section as well (or only).Also, negative indexing should be included such as
a[-1]ora[:-2], etc