i need to add a value to the beggining of a array and remove the last value of the array in python code example
Example: exclude last value of an array python
my_array=np.arange(10)
my_array[:-1]
my_array=np.arange(10)
my_array[:-1]