removing the first element from a list python code example
Example 1: remove first member from list
# 0 is the member you want to remove
list.pop(0)
Example 2: remove first item from list python
>>> l = ['a', 'b', 'c', 'd']
>>> l.pop(0)
'a'
>>> l
['b', 'c', 'd']
>>>