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

class collections.abc.MutableMapping ABCs for read-only and mutable mappings.

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

extendleft(iterable) Extend the left side of the deque by appending elements from iterable. Note, the series of left

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

peek() If self is alive then return the tuple (obj, func, args, kwargs). If self is dead then

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

somenamedtuple._fields Tuple of strings listing the field names. Useful for introspection and for creating new named tuple types

2025-01-10 15:47:30
types.ModuleType
  • References/Python/Python/Data Types

class types.ModuleType(name, doc=None) The type of modules. Constructor takes the name

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

classmethod date.fromordinal(ordinal) Return the date corresponding to the proleptic Gregorian ordinal, where January 1 of year

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

timezone.tzname(dt) Return the fixed value specified when the timezone instance is constructed or a string ‘UTCsHH:MM’

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

time.dst() If tzinfo is None, returns None, else returns self.tzinfo.dst(None)

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

time.__str__() For a time t, str(t) is equivalent to t.isoformat().

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

array.typecode The typecode character used to create the array.

2025-01-10 15:47:30