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

array.tostring() Deprecated alias for tobytes().

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

yeardatescalendar(year, width=3) Return the data for the specified year ready for formatting. The return value is a list of

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

Repr.maxarray Limits on the number of entries represented for the named object type. The default is 4 for maxdict

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

elements() Return an iterator over elements repeating each as many times as its count. Elements are returned in arbitrary order

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

datetime.timetuple() Return a

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

date.ctime() Return a string representing the date, for example date(2002, 12, 4).ctime() == 'Wed Dec 4 00:00:00 2002'

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

bisect.insort_right(a, x, lo=0, hi=len(a)) bisect.insort(a, x, lo=0, hi=len(a)) Similar to insort_left()

2025-01-10 15:47:30
pprint.PrettyPrinter.isrecursive()
  • References/Python/Python/Data Types

PrettyPrinter.isrecursive(object) Determine if the object requires a recursive representation.

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

bisect.insort_left(a, x, lo=0, hi=len(a)) Insert x in a in sorted order. This is equivalent to a.insert(bisect

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

classmethod datetime.utcnow() Return the current UTC date and time, with tzinfo None. This is like

2025-01-10 15:47:30