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

class collections.UserString([sequence]) Class that simulates a string or a Unicode string object. The instance’s content is

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

date.replace(year, month, day) Return a date with the same value, except for those parameters given new values by whichever

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

class weakref.ref(object[, callback]) Return a weak reference to object. The original object can be retrieved by calling

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

detach() If self is alive then mark it as dead and return the tuple (obj, func, args, kwargs). If self

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

array.insert(i, x) Insert a new item with value x in the array before position i. Negative values are treated

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

weakref.proxy(object[, callback]) Return a proxy to object which uses a weak reference. This supports use of the proxy

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

types.DynamicClassAttribute(fget=None, fset=None, fdel=None, doc=None) Route attribute access on a class to __getattr__.

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

date.isocalendar() Return a 3-tuple, (ISO year, ISO week number, ISO weekday). The ISO calendar

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

class collections.abc.Container class collections.abc.Hashable class collections.abc.Sized

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

classmethod datetime.now(tz=None) Return the current local date and time. If optional argument tz is None

2025-01-10 15:47:30