delete first item in list pyto code example
Example 1: python pop front of list
>>> l = ['a', 'b', 'c', 'd']
>>> l.pop(0)
'a'
>>> l
['b', 'c', 'd']
>>>
Example 2: remove first member from list
# 0 is the member you want to remove
list.pop(0)
Example 3: exclude first value of an array python
my_array=np.arange(10)
my_array[1:]