datetime.datetime.isocalendar()
  • References/Python/Python/Data Types

datetime.isocalendar() Return a 3-tuple, (ISO year, ISO week number, ISO weekday). The same as self.date().isocalendar()

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

datetime.__str__() For a datetime instance d, str(d) is equivalent to d.isoformat('

2025-01-10 15:47:30
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
reprlib.Repr.repr1()
  • References/Python/Python/Data Types

Repr.repr1(obj, level) Recursive implementation used by repr(). This uses the type of obj to determine

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.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
types.LambdaType
  • References/Python/Python/Data Types

types.LambdaType The type of user-defined functions and functions created by lambda expressions.

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
pprint.PrettyPrinter.pprint()
  • References/Python/Python/Data Types

PrettyPrinter.pprint(object) Print the formatted representation of object on the configured stream, followed by a newline

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

monthdays2calendar(year, month) Return a list of the weeks in the month month of the year as full weeks. Weeks

2025-01-10 15:47:30