collections.somenamedtuple.
  • References/Python/Python/Data Types

somenamedtuple._replace(kwargs) Return a new instance of the named tuple replacing specified fields with new values:

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

PrettyPrinter.isrecursive(object) Determine if the object requires a recursive representation.

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

PrettyPrinter.format(object, context, maxlevels, level) Returns three values: the formatted version of object as a

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

weakref.getweakrefcount(object) Return the number of weak references and proxies which refer to object.

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
bisect.insort_right()
  • References/Python/Python/Data Types

bisect.insort_right(a, x, lo=0, hi=len(a)) bisect.insort(a, x, lo=0, hi=len(a)) Similar to insort_left()

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

date.toordinal() Return the proleptic Gregorian ordinal of the date, where January 1 of year 1 has ordinal 1. For any date

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

datetime.timetz() Return time object with same hour, minute, second, microsecond, and tzinfo attributes. See also

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

class collections.abc.Coroutine ABC for coroutine compatible classes. These implement the following methods, defined in Coroutine

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

array.fromstring() Deprecated alias for frombytes().

2025-01-10 15:47:30