码迷,mamicode.com
首页 > 编程语言 > 详细

python 列表之队列

时间:2017-08-14 16:22:30      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:stdout   first   rem   out   有趣   michael   列表   span   article   

列表实现队列操作(FIFO),可以使用标准库里的 collections.deque,deque是double-ended quene的缩写,双端队列的意思,它可以实现从队列头部快速增加和取出对象。

>>> from collections import deque
>>> queue = deque(["Eric", "John", "Michael"])
>>> queue.append("Terry")           # Terry arrives
>>> queue.append("Graham")          # Graham arrives
>>> queue.popleft()                 # The first to arrive now leaves
Eric
>>> queue.popleft()                 # The second to arrive now leaves
John
>>> queue                           # Remaining queue in order of arrival
deque([Michael, Terry, Graham])

deque用rotate实现跑马灯操作,转自http://www.zlovezl.cn/articles/collections-in-python/

# -*- coding: utf-8 -*-
"""
下面这个是一个有趣的例子,主要使用了deque的rotate方法来实现了一个无限循环
的加载动画
"""
import sys
import time
from collections import deque

fancy_loading = deque(‘>--------------------‘)

while True:
    print ‘\r%s‘ % ‘‘.join(fancy_loading),
    fancy_loading.rotate(1)
    sys.stdout.flush()
    time.sleep(0.08)

  

python 列表之队列

标签:stdout   first   rem   out   有趣   michael   列表   span   article   

原文地址:http://www.cnblogs.com/guoxueyuan/p/7358061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!