pop out from list python code example Example: how to pop things out of list python >>> l = ['a', 'b', 'c', 'd'] >>> l.pop(0) 'a' >>> l ['b', 'c', 'd']