# To add an item to the back of the queue, use append(). To retrieve an item # from the front of the queue, use pop() with 0 as the index. For example:queue = ["A", "B", "C"]queue.append("D") queue.append("E") print queue.pop(0)print queue.pop(0)print queue
Name (required)
email (will not be published) (required)
Website