collections.abc.Sized
  • References/Python/Python/Data Types

class collections.abc.Sized class collections.abc.Callable ABCs for classes that provide respectively the methods

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

datetime.timestamp() Return POSIX timestamp corresponding to the datetime instance. The return value is a

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

array.append(x) Append a new item with value x to the end of the array.

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

array.tobytes() Convert the array to an array of machine values and return the bytes representation (the same sequence of bytes

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

heapq.heappushpop(heap, item) Push item on the heap, then pop and return the smallest item from the heap.

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

timedelta.resolution The smallest possible difference between non-equal timedelta objects, timedelta(microseconds=1)

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

count(x) Count the number of deque elements equal to x.

2025-01-10 15:47:30
weakref.ReferenceType
  • References/Python/Python/Data Types

weakref.ReferenceType The type object for weak references objects.

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

bisect.bisect(a, x, lo=0, hi=len(a)) Similar to bisect_left(), but returns an insertion point which comes after

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

clear() Remove all elements from the deque leaving it with length 0.

2025-01-10 15:47:30