heapq.heappop()
  • References/Python/Python/Data Types

heapq.heappop(heap) Pop and return the smallest item from the heap, maintaining the heap invariant. If the heap is

2025-01-10 15:47:30
collections.Counter.update()
  • References/Python/Python/Data Types

update([iterable-or-mapping]) Elements are counted from an iterable or added-in from another mapping (or counter)

2025-01-10 15:47:30
array.array.extend()
  • References/Python/Python/Data Types

array.extend(iterable) Append items from iterable to the end of the array. If iterable is another array, it

2025-01-10 15:47:30
array.array.pop()
  • References/Python/Python/Data Types

array.pop([i]) Removes the item with the index i from the array and returns it. The optional argument defaults to -1

2025-01-10 15:47:30
datetime.datetime.year
  • References/Python/Python/Data Types

datetime.year Between MINYEAR and MAXYEAR inclusive.

2025-01-10 15:47:30
collections.deque
  • References/Python/Python/Data Types

class collections.deque([iterable[, maxlen]]) Returns a new deque object initialized left-to-right (using append())

2025-01-10 15:47:30
datetime.datetime.isoweekday()
  • References/Python/Python/Data Types

datetime.isoweekday() Return the day of the week as an integer, where Monday is 1 and Sunday is 7. The same as self.date()

2025-01-10 15:47:30
datetime.timedelta
  • References/Python/Python/Data Types

class datetime.timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0) All arguments are optional

2025-01-10 15:47:30