Fluent Python简记
Fluent Python 笔记一、序列(Sequence)1、容器序列(Container sequences):list, tuple, collections.deque ...2、平坦序列(Flat sequences):str, bytes, bytearray, memoryview, array.array根据可不可变分类:1)可变的序列:list, bytearray,...