arange numpy function code example
Example 1: np arange
np.arange([start], stop, [step])
>>> np.arange(10) # stop
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> np.arange(2, 10)
array([2, 3, 4, 5, 6, 7, 8, 9])
>>> np.arange(2, 10, 2)
array([2, 4, 6, 8])
Example 2: numpy arange
arange() NumPy arange() is one of the array creation routines based on numerical
ranges.
It creates an instance of ndarray with evenly spaced values and returns the
reference to it.