numpy - dylanmoz/notes GitHub Wiki
np.arange([start, ], stop, [step, ]): np.ndarray
- Evenly spaced values by step
from start
to stop
- Methods with the same format:
ones
,empty
.