简要介绍一下各种集合:
列表、元组、字典、集合(含frozenset)、字符串、堆栈(如手枪弹夹:先进后出)、队列(如马克沁机枪的弹夹:先进先出)
1、collections
1)queue 队列介绍
如马克沁机枪的弹夹:先进先出,还如排队买票,先排的先买!
2)命名元组
3)deque双端队列 可从队列的两端操作,比队列快!
4)有序字典 OrderedDict
5)默认字典
2、time模块
3、random模块
4、os模块
5、sys模块
Python进阶-XI 常用模块之一:collections、time、random、os、sys
原文:https://www.cnblogs.com/funyou/p/11985962.html