datetime.timedelta.total_seconds()
  • References/Python/Python/Data Types

timedelta.total_seconds() Return the total number of seconds contained in the duration. Equivalent to td / timedelta(seconds=1)

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

rotate(n) Rotate the deque n steps to the right. If n is negative, rotate to the left. Rotating one step to

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

atexit A writable boolean property which by default is true. When the program exits, it calls all remaining live finalizers

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

class collections.abc.Set class collections.abc.MutableSet ABCs for read-only and mutable sets.

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

Repr.repr(obj) The equivalent to the built-in

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

class calendar.LocaleHTMLCalendar(firstweekday=0, locale=None) This subclass of HTMLCalendar can be passed a locale

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

class array.array(typecode[, initializer]) A new array whose items are restricted by typecode, and initialized from

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

appendleft(x) Add x to the left side of the deque.

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

array.fromunicode(s) Extends this array with data from the given unicode string. The array must be a type 'u' array;

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

calendar.monthrange(year, month) Returns weekday of first day of the month and number of days in month, for the specified year

2025-01-10 15:47:30