240 发简信
IP属地:北京
  • pylib_defaultdict

    目录 简述 例子 简述 defaultdict是dict的子类. 相交标准dict, 它有两点增强: 当key不存在时, defaultdict...

  • pylib_namedtuple

    目录 简述 API 例子 简述 namedtuple 是对tuple的扩展,支持用名称访问tuple中的元素.Python文档 API coll...

  • pylib_deque

    目录 简述 API向列表添加元素从列表中移除元素改变列表的操作查找元素其他 示例实现Stack实现Queue滑动平均(moving averag...

  • pylib_bisect

    目录 简述 APIbisect.bisect_left(a, x, lo=0, hi=len(a))bisect.bisect_right(a,...

  • pylib-heapq

    目录 pylib-heapq简述APIheapq.heapify(x)heapq.heappush(heap, item)heapq.heapp...