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

heapq.nlargest(n, iterable, key=None) Return a list with the n largest elements from the dataset defined by iterable

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

insert(i, x) Insert x into the deque at position i. If the insertion would

2025-01-10 15:47:30
pprint.PrettyPrinter
  • References/Python/Python/Data Types

class pprint.PrettyPrinter(indent=1, width=80, depth=None, stream=None, *, compact=False) Construct a PrettyPrinter

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

array.reverse() Reverse the order of the items in the array.

2025-01-10 15:47:30
reprlib.Repr.maxlevel
  • References/Python/Python/Data Types

Repr.maxlevel Depth limit on the creation of recursive representations. The default is 6.

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

items() Return a new view of the underlying mapping’s items ((key, value) pairs).

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

formatyear(theyear, w=2, l=1, c=6, m=3) Return a m-column calendar for an entire year as a multi-line string. Optional

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

class collections.abc.Iterable ABC for classes that provide the __iter__() method. See also the definition of

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

class collections.abc.Callable ABCs for classes that provide respectively the methods __contains__(), __hash__()

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

tzinfo.dst(dt) Return the daylight saving time (DST) adjustment, in minutes east of UTC, or None if DST information

2025-01-10 15:47:30