Fork me on GitHub

  1 queue:

  python2: import Queue

  python3: import queue

  2 queue size:  

  python2: cache = Queue.Queue(maxsize=5)

  python3: cache = queue.Queue(maxsize=5)

  3 sorted:  

  python2: zip(a,b).sort()

  python3: sorted(zip(a,b))

posted on 2018-07-30 19:21  虚生  阅读(579)  评论(0编辑  收藏  举报