array.array.fromlist()
  • References/Python/Python/Data Types

array.fromlist(list) Append items from the list. This is equivalent to for x in list: a.append(x) except that if

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

__callback__ This read-only attribute returns the callback currently associated to the weakref. If there is no callback or if

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

__name__ The name of the module.

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

classmethod date.today() Return the current local date. This is equivalent to date.fromtimestamp(time.time()).

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

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

2025-01-10 15:47:30
enum.IntEnum
  • References/Python/Python/Data Types

class enum.IntEnum Base class for creating enumerated constants that are also subclasses of

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

calendar.firstweekday() Returns the current setting for the weekday to start each week.

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

WeakValueDictionary.valuerefs() Return an iterable of the weak references to the values.

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

date.year Between MINYEAR and MAXYEAR inclusive.

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

__loader__ The loader which loaded the module. Defaults to None.

2025-01-10 15:47:30