See More

#!/usr/bin/python stack = [3, 4, 5] stack.append(6) stack.append(7) print stack stack.pop() print stack stack.pop() stack.pop() print stack