0
点赞
收藏
分享

微信扫一扫

Python的队列其它

whiteMu 2022-08-02 阅读 61


q=queue.deque()
q.append(123)
q.append(333)
q.appendleft(456)
print(q.pop())
print(q.popleft())

举报

相关推荐

0 条评论