Q:Python里面的数据结构都有哪些? 答:str,list,tuple,set,frozenset,dict,以上是Python默认的数据结构,还有容器类型collections,其中包含:Counter, defaultdict,deque,namedtuple,OrderedDict. array,heapq,bisect,Queue,struct. Q:Python里面的list与tuple有什么区别? 答:list可以做增删,tuple不行. Q:Python中的tuple常用在什么…