??? what a list be fr
- Slicing is the process of extracting a sublist through indexing.
SUBLIST = LIST[START:END:STEP]
# omit a parameter to use a default value:
# START = 0, END = len(LIST), STEP = 1import numpy as np
# make an numpy array
NP_ARRAY = np.array(ARRAY)
# note: 2D numpy arrays slice in [COLUMNS][ROWS]