remove first item in list python code example
Example 1: remove first member from list
# 0 is the member you want to remove
list.pop(0)
Example 2: exclude first value of an array python
my_array=np.arange(10)
my_array[1:]
# 0 is the member you want to remove
list.pop(0)
my_array=np.arange(10)
my_array[1:]