序列是具有先后关系的一组数据,是一维元素向量,元素类型可以不同,类似数学元素序列,元素间由序号引导,通过下标访问序列的特定元素.序列类型是一个基类类型,字符串类型,元祖类型,列表类型都属于序列类型. 序号定义,正向递增序号,反向递减序号.A[0]-A[5] A[-6] - A[-1] 序列类型操作: x in S x not in S s+t s*n或n*s s[i] s[i:j:k]或s[i:j] s[::-]序列反序 序列类型函数和方法: len(s) min(s) max(s) s.i…
python学习笔记整理 数据结构--字典 无序的 {键:值} 对集合 用于查询的方法 len(d) Return the number of items in the dictionary d. 返回元素个数 d[key] Return the item of d with key key. Raises a KeyError if key is not in the map. If a subclass of dict defines a method _missing_() and key…