I have a list of about 40 entries. And I frequently want to append an item to the start of the list (with id 0) and want to delete the last entry (
list
last
Another approach
L = ["herp", "derp", "blah", "what", "da..."] L[:0]= ["wuggah"] L.pop()