types.BuiltinMethodType
  • References/Python/Python/Data Types

types.BuiltinMethodType The type of built-in functions like

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

bisect.bisect(a, x, lo=0, hi=len(a)) Similar to bisect_left(), but returns an insertion point which comes after

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

Repr.maxtuple Repr.maxset Repr.maxfrozenset Repr.maxdeque

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

PrettyPrinter.isreadable(object) Determine if the formatted representation of the object is “readable,” or can be used to reconstruct

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

fromkeys(iterable) This class method is not implemented for Counter objects.

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

__doc__ The docstring of the module. Defaults to None.

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

array.extend(iterable) Append items from iterable to the end of the array. If iterable is another array, it

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

Repr.maxstring Limit on the number of characters in the representation of the string. Note that the “normal” representation

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

date.isoweekday() Return the day of the week as an integer, where Monday is 1 and Sunday is 7. For example, date(2002

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

date.weekday() Return the day of the week as an integer, where Monday is 0 and Sunday is 6. For example, date(2002, 12

2025-01-10 15:47:30