Closed SimonHeybrock closed 2 years ago
A list is more consistent with other Python behavior. For example, in NumPy a tuple is used for multi-dim slicing, but a list can select multiple indices along a single dimension: a[[2,5]].
a[[2,5]]
A list is more consistent with other Python behavior. For example, in NumPy a tuple is used for multi-dim slicing, but a list can select multiple indices along a single dimension:
a[[2,5]]
.