Numpy:科学计算 HOME: http://www.numpy.org/ NumPy is the fundamental package for scientific computing with Python 科学计算库, Python的一种开源的数值计算扩展, Numpy内部解除了Python的PIL(全局解释器锁),运算效率极好,是大量机器学习框架的基础库. Pandas:科学计算库,基于Numpy HOME: http://pandas.pydata.org/ pandas i…
apscheduler collections collections.OrderDict collections.defaultdict Python 标准库提供了 collections 模块.这个方便的附加组件可以为你提供更多数据类型. from collections import OrderedDict, Counter # Remembers the order the keys are added! x = OrderedDict(a=1, b=2, c=3) # Counts t…