datetime.time.utcoffset()
  • References/Python/Python/Data Types

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

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

datetime.weekday() Return the day of the week as an integer, where Monday is 0 and Sunday is 6. The same as self.date()

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

itermonthdays(year, month) Return an iterator for the month month in the year year similar to itermonthdates()

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

extend(iterable) Extend the right side of the deque by appending elements from the iterable argument.

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

class collections.UserList([list]) Class that simulates a list. The instance’s contents are kept in a regular list, which is

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

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

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

remove(value) Remove the first occurrence of value. If not found, raises a

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

collections.namedtuple(typename, field_names, verbose=False, rename=False) Returns a new tuple subclass named typename

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

class collections.abc.Generator ABC for generator classes that implement the protocol defined in

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

date.month Between 1 and 12 inclusive.

2025-01-10 15:47:30